Skip to content

Commit

Permalink
remove old path check in flatpak
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 27, 2021
1 parent 5112796 commit 50694e5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,7 @@ def on_start(self):
tmp_runners = [x for x in self.runner.runners_available if not x.startswith('sys-')]
if len(tmp_runners) == 0:
# Check for flatpak migration
if "IS_FLATPAK" in os.environ \
and self.settings.get_boolean("flatpak-migration") \
and self.runner.check_bottles_n() > 0:
self.show_flatpak_migration_view()
else:
self.show_onboard_view()
self.show_onboard_view()

self.check_crash_log()

Expand Down

0 comments on commit 50694e5

Please sign in to comment.