[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57876] trunk/blender/source/blender/ makesrna/intern/rna_wm.c: Fix more swapped descriptions for mouse X/ Y position properties.

Brecht Van Lommel brechtvanlommel at pandora.be
Sat Jun 29 13:02:36 CEST 2013


Revision: 57876
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57876
Author:   blendix
Date:     2013-06-29 11:02:36 +0000 (Sat, 29 Jun 2013)
Log Message:
-----------
Fix more swapped descriptions for mouse X/Y position properties.

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	2013-06-29 10:59:54 UTC (rev 57875)
+++ trunk/blender/source/blender/makesrna/intern/rna_wm.c	2013-06-29 11:02:36 UTC (rev 57876)
@@ -1598,32 +1598,32 @@
 	prop = RNA_def_property(srna, "mouse_x", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "x");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse X Position", "The window relative vertical location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse X Position", "The window relative horizontal location of the mouse");
 	
 	prop = RNA_def_property(srna, "mouse_y", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "y");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse Y Position", "The window relative horizontal location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse Y Position", "The window relative vertical location of the mouse");
 
 	prop = RNA_def_property(srna, "mouse_region_x", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "mval[0]");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse X Position", "The region relative vertical location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse X Position", "The region relative horizontal location of the mouse");
 
 	prop = RNA_def_property(srna, "mouse_region_y", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "mval[1]");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse Y Position", "The region relative horizontal location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse Y Position", "The region relative vertical location of the mouse");
 	
 	prop = RNA_def_property(srna, "mouse_prev_x", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "prevx");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse Previous X Position", "The window relative vertical location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse Previous X Position", "The window relative horizontal location of the mouse");
 	
 	prop = RNA_def_property(srna, "mouse_prev_y", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "prevy");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Mouse Previous Y Position", "The window relative horizontal location of the mouse");
+	RNA_def_property_ui_text(prop, "Mouse Previous Y Position", "The window relative vertical location of the mouse");
 
 
 	/* modifiers */




More information about the Bf-blender-cvs mailing list