Skip to content

Commit

Permalink
gui - block more things while process is running
Browse files Browse the repository at this point in the history
  • Loading branch information
HENDRIX-ZT2 committed Nov 27, 2024
1 parent 2c5c527 commit 1e9d708
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# this file is auto-generated by the pre-commit hook increment_version.py
VERSION = "2024.11.26"
COMMIT_HASH = "31f55d50a"
COMMIT_TIME = "Tue Nov 26 18:33:08 2024 +0100"
COMMIT_HASH = "2c5c52735"
COMMIT_TIME = "Tue Nov 26 19:07:13 2024 +0100"
6 changes: 6 additions & 0 deletions ovl_tool_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,12 @@ def notify_user(self, msg_list):
def enable_gui_options(self, enable=True):
self.compression_choice.setEnabled(enable)
self.installed_games.play_button.setEnabled(enable)
self.installed_games.dirs.setEnabled(enable)
self.installed_games.search.setEnabled(enable)
self.file_widget.setEnabled(enable)
self.file_widget.icon.setEnabled(enable)
self.file_widget.entry.setEnabled(enable)
self.files_container.table.setEnabled(enable)
self.ovl_game_choice.setEnabled(enable)
# just disable all actions
for action_name in self.actions.keys():
Expand Down

0 comments on commit 1e9d708

Please sign in to comment.