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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-02-17 18:24:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2011-02-17 18:24:43 +0300
commit8a63ee46ba4114a17916e6ab45cab061365e83c7 (patch)
tree1a75d64d923548df5ad52fa419a27d2345013152 /source/blender/editors
parent1b25f48542b85f61e9fb6044e5ec0b1985a7906a (diff)
Spall text space usability:
Use shift-del to cut, ctrl-ins to copy and shift-ins to paste Most of editors support this hotkeys and it's annoying when you trying to use them in text space.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_text/space_text.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index 506976e1ebc..6e88e2cd6b2 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -278,6 +278,10 @@ static void text_keymap(struct wmKeyConfig *keyconf)
WM_keymap_add_item(keymap, "TEXT_OT_copy", CKEY, KM_PRESS, KM_CTRL, 0);
WM_keymap_add_item(keymap, "TEXT_OT_paste", VKEY, KM_PRESS, KM_CTRL, 0);
+ WM_keymap_add_item(keymap, "TEXT_OT_cut", DELKEY, KM_PRESS, KM_SHIFT, 0);
+ WM_keymap_add_item(keymap, "TEXT_OT_copy", INSERTKEY, KM_PRESS, KM_CTRL, 0);
+ WM_keymap_add_item(keymap, "TEXT_OT_paste", INSERTKEY, KM_PRESS, KM_SHIFT, 0);
+
if(U.uiflag & USER_MMB_PASTE) // XXX not dynamic
RNA_boolean_set(WM_keymap_add_item(keymap, "TEXT_OT_paste", MIDDLEMOUSE, KM_PRESS, 0, 0)->ptr, "selection", 1);