Skip to content

Commit

Permalink
fix override refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
th3w1zard1 committed Mar 14, 2024
1 parent d459ada commit 6010ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/HolocronToolset/src/toolset/gui/windows/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def onOverrideRefresh(self):
print("No installation loaded, cannot refresh Override")
return
print(f"Refreshing list of override folders available at {self.active.path()}")
self.refreshOverrideList()
self.refreshOverrideList(reload=False)

def onTexturesChanged(self, newTexturepack: str):
if not self.active:
Expand Down Expand Up @@ -801,7 +801,7 @@ def _getTexturePackList(
reload: bool = True,
) -> list[QStandardItem] | None:
if self.active is None:
print("no installation is currently loaded, cannot refresh texturepack list")
print("No installation is currently loaded, cannot refresh texturepack list")
return None
if reload:
self.active.load_textures()
Expand Down

0 comments on commit 6010ed3

Please sign in to comment.