[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46736] trunk/blender/source/blender/ editors/space_node/drawnode.c: Compositor / Box and Ellipse Mask:

Thomas Dinges blender at dingto.org
Thu May 17 16:55:01 CEST 2012


Revision: 46736
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46736
Author:   dingto
Date:     2012-05-17 14:55:01 +0000 (Thu, 17 May 2012)
Log Message:
-----------
Compositor / Box and Ellipse Mask:
* "X/Y position" label -> "X/Y". The longer text was barely visible in the UI.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_node/drawnode.c

Modified: trunk/blender/source/blender/editors/space_node/drawnode.c
===================================================================
--- trunk/blender/source/blender/editors/space_node/drawnode.c	2012-05-17 14:02:01 UTC (rev 46735)
+++ trunk/blender/source/blender/editors/space_node/drawnode.c	2012-05-17 14:55:01 UTC (rev 46736)
@@ -2068,8 +2068,8 @@
 	uiLayout *row;
 	
 	row= uiLayoutRow(layout, 1);
-	uiItemR(row, ptr, "x", 0, NULL, ICON_NONE);
-	uiItemR(row, ptr, "y", 0, NULL, ICON_NONE);
+	uiItemR(row, ptr, "x", 0, "X", ICON_NONE);
+	uiItemR(row, ptr, "y", 0, "Y", ICON_NONE);
 	
 	row= uiLayoutRow(layout, 1);
 	uiItemR(row, ptr, "width", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
@@ -2195,8 +2195,8 @@
 {
 	uiLayout *row;
 	row= uiLayoutRow(layout, 1);
-	uiItemR(row, ptr, "x", 0, NULL, ICON_NONE);
-	uiItemR(row, ptr, "y", 0, NULL, ICON_NONE);
+	uiItemR(row, ptr, "x", 0, "X", ICON_NONE);
+	uiItemR(row, ptr, "y", 0, "Y", ICON_NONE);
 	row= uiLayoutRow(layout, 1);
 	uiItemR(row, ptr, "width", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
 	uiItemR(row, ptr, "height", UI_ITEM_R_SLIDER, NULL, ICON_NONE);




More information about the Bf-blender-cvs mailing list