Fixed #29 (openDownloadFolder not working)

This commit is contained in:
RemixDev 2020-09-20 22:19:05 +02:00
parent 5129cbea98
commit e927912965

View file

@ -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):