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>2014-03-09 07:07:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-09 07:12:56 +0400
commitbcb99b794d7176cf94cb87c483a0efa458b12ef7 (patch)
tree081c4bb243707787f29cf5544399fea9466d37d3 /source/blender/editors/space_text
parent25ad7b44a0a3251c5ad5171031010549de0c1c8a (diff)
Text Editor: Remove key binding for text/object conversion
This can freeze Blender if you accidentally press ctrl+m on a large script, conversion from text to 3d objects is fairly special case, restricting access to the menu only.
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/space_text.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index 2986408d7ee..875496d5edf 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -312,11 +312,6 @@ static void text_keymap(struct wmKeyConfig *keyconf)
RNA_boolean_set(kmi->ptr, "selection", TRUE);
}
- kmi = WM_keymap_add_item(keymap, "TEXT_OT_to_3d_object", MKEY, KM_PRESS, KM_ALT, 0);
- RNA_boolean_set(kmi->ptr, "split_lines", FALSE);
- kmi = WM_keymap_add_item(keymap, "TEXT_OT_to_3d_object", MKEY, KM_PRESS, KM_CTRL, 0);
- RNA_boolean_set(kmi->ptr, "split_lines", TRUE);
-
WM_keymap_add_item(keymap, "TEXT_OT_select_all", AKEY, KM_PRESS, KM_CTRL, 0);
WM_keymap_add_item(keymap, "TEXT_OT_select_line", AKEY, KM_PRESS, KM_SHIFT | KM_CTRL, 0);
WM_keymap_add_item(keymap, "TEXT_OT_select_word", LEFTMOUSE, KM_DBL_CLICK, 0, 0);