[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26046] trunk/blender/source/blender/ editors/space_text/space_text.c: Test Editor fix: Ctrl+LEFT/ RIGHT was set twice (one of them wrongly)

Dalai Felinto dfelinto at gmail.com
Sun Jan 17 03:11:05 CET 2010


Revision: 26046
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26046
Author:   dfelinto
Date:     2010-01-17 03:10:54 +0100 (Sun, 17 Jan 2010)

Log Message:
-----------
Test Editor fix: Ctrl+LEFT/RIGHT was set twice (one of them wrongly)

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_text/space_text.c

Modified: trunk/blender/source/blender/editors/space_text/space_text.c
===================================================================
--- trunk/blender/source/blender/editors/space_text/space_text.c	2010-01-16 23:53:51 UTC (rev 26045)
+++ trunk/blender/source/blender/editors/space_text/space_text.c	2010-01-17 02:10:54 UTC (rev 26046)
@@ -280,8 +280,6 @@
 	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", HOMEKEY, KM_PRESS, 0, 0)->ptr, "type", LINE_BEGIN);
 	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", ENDKEY, KM_PRESS, 0, 0)->ptr, "type", LINE_END);
 	
-	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", LEFTARROWKEY, KM_PRESS, KM_CTRL, 0)->ptr, "type", LINE_BEGIN);
-	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", RIGHTARROWKEY, KM_PRESS, KM_CTRL, 0)->ptr, "type", LINE_END);
 	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", EKEY, KM_PRESS, KM_CTRL, 0)->ptr, "type", LINE_END);
 	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", EKEY, KM_PRESS, KM_CTRL|KM_SHIFT, 0)->ptr, "type", LINE_END);
 	RNA_enum_set(WM_keymap_add_item(keymap, "TEXT_OT_move", LEFTARROWKEY, KM_PRESS, 0, 0)->ptr, "type", PREV_CHAR);





More information about the Bf-blender-cvs mailing list