Skip to content

Commit 5e3bbd5

Browse files
committed
Increase initial overlay creation delay
Let other initializations complete, before creating/updating overlay.
1 parent f31c934 commit 5e3bbd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def setup_overlay():
4444
overlay.enable_overlay()
4545

4646
# run delayed to prevent race condition with previous plugin_unloaded
47-
sublime.set_timeout_async(setup_overlay, overlay.IGNORE_DELAY)
47+
sublime.set_timeout_async(setup_overlay, 1000)
4848

4949
def plugin_unloaded():
5050
settings.clear_listener()

0 commit comments

Comments
 (0)