Skip to content
Open
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
4 changes: 3 additions & 1 deletion python/tk_multi_workfiles/file_save_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ def __init__(self, parent=None):
self._allow_preview_update = True
# Manually invoke the preview update here so it is only called once due to the
# _allow_preview_update flag.
self._start_preview_update()
# this is unneccesary at this stage, callbacks set the preview update fine,
# and too many calls to this function can lock the gui
#self._start_preview_update()
except Exception:
self._allow_preview_update = True
app = sgtk.platform.current_bundle()
Expand Down