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

Brecht Van Lommel brechtvanlommel at pandora.be
Sat Jun 29 12:59:54 CEST 2013


Revision: 57875
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57875
Author:   blendix
Date:     2013-06-29 10:59:54 +0000 (Sat, 29 Jun 2013)
Log Message:
-----------
Fix swapped descriptions for window 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:52:18 UTC (rev 57874)
+++ trunk/blender/source/blender/makesrna/intern/rna_wm.c	2013-06-29 10:59:54 UTC (rev 57875)
@@ -1721,12 +1721,12 @@
 	prop = RNA_def_property(srna, "x", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "posx");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "X Position", "Vertical location of the window");
+	RNA_def_property_ui_text(prop, "X Position", "Horizontal location of the window");
 
 	prop = RNA_def_property(srna, "y", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "posy");
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
-	RNA_def_property_ui_text(prop, "Y Position", "Horizontal location of the window");
+	RNA_def_property_ui_text(prop, "Y Position", "Vertical location of the window");
 
 	prop = RNA_def_property(srna, "width", PROP_INT, PROP_UNSIGNED);
 	RNA_def_property_int_sdna(prop, NULL, "sizex");




More information about the Bf-blender-cvs mailing list