[Bf-blender-cvs] [641d653] master: Fix T38685: missing auto refresh button text on image nodes.

Brecht Van Lommel noreply at git.blender.org
Mon Feb 17 17:52:19 CET 2014


Commit: 641d653a3799144e67808cd83b27e210eb26fc05
Author: Brecht Van Lommel
Date:   Mon Feb 17 17:51:20 2014 +0100
https://developer.blender.org/rB641d653a3799144e67808cd83b27e210eb26fc05

Fix T38685: missing auto refresh button text on image nodes.

===================================================================

M	source/blender/editors/space_node/drawnode.c

===================================================================

diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index 8c6a807..0c92399 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);




More information about the Bf-blender-cvs mailing list