diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2016-05-05 20:11:01 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2016-05-05 20:11:01 +0200 |
commit | 88543a0d4848e9069ae1f07eceef34a6441f63c6 (patch) | |
tree | 9e6f55ec180d213e267f1e81085a31ad554aefec /mageiaSync | |
parent | 01bc533fa75737f84805ce8553395649eef556f4 (diff) | |
download | MageiaSync-88543a0d4848e9069ae1f07eceef34a6441f63c6.tar MageiaSync-88543a0d4848e9069ae1f07eceef34a6441f63c6.tar.gz MageiaSync-88543a0d4848e9069ae1f07eceef34a6441f63c6.tar.bz2 MageiaSync-88543a0d4848e9069ae1f07eceef34a6441f63c6.tar.xz MageiaSync-88543a0d4848e9069ae1f07eceef34a6441f63c6.zip |
Manage the default value for release and destination directory.
Doesn't update lists when prefs are canceled.
Diffstat (limited to 'mageiaSync')
-rw-r--r-- | mageiaSync/mageiasync.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mageiaSync/mageiasync.py b/mageiaSync/mageiasync.py index 617c37e..d5fd11f 100644 --- a/mageiaSync/mageiasync.py +++ b/mageiaSync/mageiasync.py @@ -381,8 +381,7 @@ class IsosViewer(QMainWindow, mageiaSyncUI.Ui_mainWindow): # dialog box to select the destination (local directory) directory = QFileDialog.getExistingDirectory(self, self.tr('Select a directory'),self.destination) if directory != "": - isosSync.destination = directory - self.pd.selectDest.setText(isosSync.destination) + self.pd.selectDest.setText(directory) def selectAllIsos(self): @@ -465,6 +464,7 @@ class IsosViewer(QMainWindow, mageiaSyncUI.Ui_mainWindow): if code==0: for item in list: self.pd.release.addItem(item) + self.pd.release.setCurrentText(self.release) self.pd.password.setText(self.password) self.pd.user.setText(self.user) self.pd.location.setText(self.location) @@ -479,8 +479,8 @@ class IsosViewer(QMainWindow, mageiaSyncUI.Ui_mainWindow): params.setValue("location",self.pd.location.text()) params.setValue("destination",self.pd.selectDest.text()) params.setValue("bwl",str(self.pd.bwl.value())) - self.prefsInit() - self.updateList() + self.prefsInit() + self.updateList() self.pd.close() def about(self): |