Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonique Dewanchand <m.dewanchand@atmind.nl>2012-05-21 23:58:23 +0400
committerMonique Dewanchand <m.dewanchand@atmind.nl>2012-05-21 23:58:23 +0400
commitcd002016e907d4a42d4f26fbd36dd5536a6cd36a (patch)
tree8e138c85e76c85f07187f0b939288cdcd35c2043 /source/blender/editors
parent564711418d17bbd750a496d119cf0cfaefba2107 (diff)
Fix for
[#31408] Code review testing: Button labels are invisible in many nodes
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_node/drawnode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index be1918634af..869a9157aa7 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -2080,8 +2080,8 @@ static void node_composit_buts_boxmask(uiLayout *layout, bContext *UNUSED(C), Po
uiLayout *row;
row= uiLayoutRow(layout, 1);
- uiItemR(row, ptr, "x", 0, "X", ICON_NONE);
- uiItemR(row, ptr, "y", 0, "Y", ICON_NONE);
+ uiItemR(row, ptr, "x", 0, NULL, ICON_NONE);
+ uiItemR(row, ptr, "y", 0, NULL, ICON_NONE);
row= uiLayoutRow(layout, 1);
uiItemR(row, ptr, "width", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
@@ -2207,8 +2207,8 @@ static void node_composit_buts_ellipsemask(uiLayout *layout, bContext *UNUSED(C)
{
uiLayout *row;
row= uiLayoutRow(layout, 1);
- uiItemR(row, ptr, "x", 0, "X", ICON_NONE);
- uiItemR(row, ptr, "y", 0, "Y", ICON_NONE);
+ uiItemR(row, ptr, "x", 0, NULL, ICON_NONE);
+ uiItemR(row, ptr, "y", 0, NULL, 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);