Skip to content

Commit

Permalink
Fix issue where save times were very long (10+ seconds) due to hanging
Browse files Browse the repository at this point in the history
  • Loading branch information
dragos240 committed Feb 2, 2025
1 parent 8ef29d4 commit 683a3c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ def ui_refresh():
# Check if working directory is clean on ui refresh
if hasattr(windowManager, "blendgit"):
blendgit = windowManager.blendgit
blendgit.working_dir_is_clean = working_dir_clean(
force_check=True)
blendgit.working_dir_is_clean = working_dir_clean()
# Redraw areas
for window in windowManager.windows:
for area in window.screen.areas:
Expand Down

0 comments on commit 683a3c6

Please sign in to comment.