From 22942ac74bf67ef20a6882f766ba4c1d2d722ca1 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 17 May 2012 14:55:01 +0000 Subject: Compositor / Box and Ellipse Mask: * "X/Y position" label -> "X/Y". The longer text was barely visible in the UI. --- source/blender/editors/space_node/drawnode.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 0a64c102150..d9fc793adb3 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -2068,8 +2068,8 @@ static void node_composit_buts_boxmask(uiLayout *layout, bContext *UNUSED(C), Po 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 @@ static void node_composit_buts_ellipsemask(uiLayout *layout, bContext *UNUSED(C) { 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); -- cgit v1.2.3