Skip to content

Commit 1f6261b

Browse files
committed
small change
1 parent a2b54b8 commit 1f6261b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bseq/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
@persistent
1313
def BSEQ_initialize(scene):
1414
if update_obj not in bpy.app.handlers.frame_change_post:
15-
bpy.app.handlers.frame_change_post.append(auto_refresh)
1615
bpy.app.handlers.frame_change_post.append(update_obj)
16+
if auto_refresh not in bpy.app.handlers.frame_change_post:
17+
bpy.app.handlers.frame_change_post.append(auto_refresh)
1718
subscribe_to_selected()
1819
if print_information not in bpy.app.handlers.render_init:
1920
bpy.app.handlers.render_init.append(print_information)

0 commit comments

Comments
 (0)