Skip to content

Commit

Permalink
minor fix for linux restarting, removed unused dependency file
Browse files Browse the repository at this point in the history
  • Loading branch information
Noiredd committed Mar 3, 2019
1 parent cd9f648 commit 6d2fb2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions DEPENDENCIES.txt

This file was deleted.

4 changes: 2 additions & 2 deletions filmatyk/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def __init__(self, debugMode=False, isOnLinux=False):
if userdata.is_empty:
self._reloadData() # first run
#instantiate updater and check for updates
self.updater = Updater(self.root, VERSION, progress=self._setProgress, quitter=self._quit, debugMode=self.debugMode)
self.updater = Updater(self.root, VERSION, progress=self._setProgress, quitter=self._quit, debugMode=self.debugMode, linuxMode=self.isOnLinux)
self.updater.checkUpdates()
#prevent resizing and run the app
root.resizable(False, False)
Expand Down Expand Up @@ -294,7 +294,7 @@ def _quit(self, restart=False):
command = "cd .. &&"
# remember which launcher was used
if self.isOnLinux:
command += " Filmatyk_linux.sh"
command += " ./Filmatyk_linux.sh"
else:
command += " Filmatyk.bat"
# maintain debug status
Expand Down

0 comments on commit 6d2fb2e

Please sign in to comment.