[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24234] trunk/blender/source/blender/ makesrna/intern/rna_wm.c: Fixed typo in key display code, was making the shortcuts for [ and ] (used in bone selection) inverted in the menu shortcut hint

Matt Ebb matt at mke3.net
Mon Nov 2 11:20:08 CET 2009


Revision: 24234
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24234
Author:   broken
Date:     2009-11-02 11:20:06 +0100 (Mon, 02 Nov 2009)

Log Message:
-----------
Fixed typo in key display code, was making the shortcuts for [ and ] (used in bone selection) inverted in the menu shortcut hint

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_wm.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_wm.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_wm.c	2009-11-02 10:04:37 UTC (rev 24233)
+++ trunk/blender/source/blender/makesrna/intern/rna_wm.c	2009-11-02 10:20:06 UTC (rev 24234)
@@ -183,8 +183,8 @@
 	{SLASHKEY, "SLASH", 0, "/", ""},
 	{BACKSLASHKEY, "BACK_SLASH", 0, "\\", ""},
 	{EQUALKEY, "EQUAL", 0, "=", ""},
-	{LEFTBRACKETKEY, "LEFT_BRACKET", 0, "]", ""},
-	{RIGHTBRACKETKEY, "RIGHT_BRACKET", 0, "[", ""},
+	{LEFTBRACKETKEY, "LEFT_BRACKET", 0, "[", ""},
+	{RIGHTBRACKETKEY, "RIGHT_BRACKET", 0, "]", ""},
 	{LEFTARROWKEY, "LEFT_ARROW", 0, "Left Arrow", ""},
 	{DOWNARROWKEY, "DOWN_ARROW", 0, "Down Arrow", ""},
 	{RIGHTARROWKEY, "RIGHT_ARROW", 0, "Right Arrow", ""},





More information about the Bf-blender-cvs mailing list