Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-30 12:02:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-30 12:02:49 +0400
commit47584648dc1b31ae8c8745269d04938b4671a200 (patch)
treed2d5fa6af36c4612118da804b736eaf40308ac45 /source/blender/editors/metaball/mball_ops.c
parent22982e93511095d21d74d374fee978ca2d3bd910 (diff)
split up proportional editing keymap functions (adding this in tomato branch was messy)
Diffstat (limited to 'source/blender/editors/metaball/mball_ops.c')
-rw-r--r--source/blender/editors/metaball/mball_ops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/metaball/mball_ops.c b/source/blender/editors/metaball/mball_ops.c
index 1c77eba2019..e98654f589a 100644
--- a/source/blender/editors/metaball/mball_ops.c
+++ b/source/blender/editors/metaball/mball_ops.c
@@ -79,6 +79,7 @@ void ED_keymap_metaball(wmKeyConfig *keyconf)
kmi = WM_keymap_add_item(keymap, "MBALL_OT_select_all", IKEY, KM_PRESS, KM_CTRL, 0);
RNA_enum_set(kmi->ptr, "action", SEL_INVERT);
- ED_object_generic_keymap(keyconf, keymap, 3);
+ ED_keymap_proportional_cycle(keyconf, keymap);
+ ED_keymap_proportional_editmode(keyconf, keymap, TRUE);
}