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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-17 20:51:20 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-17 20:52:09 +0400
commit641d653a3799144e67808cd83b27e210eb26fc05 (patch)
tree729066cf5bedc5e0f1c3d789bd3df247f23ef1da /source
parent6de3a8a4fe8f4eab2d2c285f11714312cfd9437e (diff)
Fix T38685: missing auto refresh button text on image nodes.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/drawnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index 8c6a807f87f..0c92399a699 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -670,7 +670,7 @@ static void node_buts_image_user(uiLayout *layout, bContext *C, PointerRNA *ptr,
uiItemR(col, ptr, "frame_start", 0, NULL, ICON_NONE);
uiItemR(col, ptr, "frame_offset", 0, NULL, ICON_NONE);
uiItemR(col, ptr, "use_cyclic", 0, NULL, ICON_NONE);
- uiItemR(col, ptr, "use_auto_refresh", UI_ITEM_R_ICON_ONLY, NULL, ICON_NONE);
+ uiItemR(col, ptr, "use_auto_refresh", 0, NULL, ICON_NONE);
}
col = uiLayoutColumn(layout, FALSE);