From edad430ce57df30c26fd5cf85f918075782de4c7 Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Sat, 9 May 2026 05:08:05 +0200 Subject: [PATCH] Fixup after_load handler --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 7e04ac79c..9ff8a8eb5 100644 --- a/__init__.py +++ b/__init__.py @@ -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():