Skip to content

Commit

Permalink
correctly default to recommended binary
Browse files Browse the repository at this point in the history
  • Loading branch information
n8marti authored and thw26 committed Aug 2, 2024
1 parent 4110a2f commit 4df9706
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions gui_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,10 @@ def start_find_appimage_files(self, release_version):
self.appimage_thread.start()

def start_wine_versions_check(self, release_version):
if not self.appimages:
self.start_find_appimage_files(release_version)
return
if self.appimages is None:
self.appimages = []
# self.start_find_appimage_files(release_version)
# return
# Setup queue, signal, thread.
self.wines_q = Queue()
self.wine_evt = "<<WineCheckProgress>>"
Expand Down

0 comments on commit 4df9706

Please sign in to comment.