Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def after_load(_a, _b):
# Doing some operations immediately on file load can crash blender in specific situations,
# so delay the post-load code execution.
# (note if register() is called without a delay the function just runs immediately, so we need any non-zero delay)
bpy.app.timers.register(after_load_impl, 0.001)
bpy.app.timers.register(after_load_impl, first_interval=0.001)


def after_load_impl():
Expand Down