mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2024-12-28 18:36:07 +00:00
Fixed #29 (openDownloadFolder not working)
This commit is contained in:
parent
5129cbea98
commit
e927912965
|
@ -147,7 +147,7 @@ class MainWindow(QMainWindow):
|
|||
|
||||
def selectDownloadFolder(self):
|
||||
filename = QFileDialog.getExistingDirectory(self, "Select Download Folder", options=QFileDialog.ShowDirsOnly)
|
||||
self.downloadFolder = filename
|
||||
self.downloadFolder = filename.replace('/', path.sep)
|
||||
self._selectDownloadFolder_semaphore.release()
|
||||
|
||||
def appLogin(self):
|
||||
|
|
Loading…
Reference in a new issue