58 |
58 |
59 @pyqtSlot() |
59 @pyqtSlot() |
60 def on_sourceFilesPicker_aboutToShowPathPickerDialog(self): |
60 def on_sourceFilesPicker_aboutToShowPathPickerDialog(self): |
61 """ |
61 """ |
62 Private slot to perform actions before the source files selection |
62 Private slot to perform actions before the source files selection |
63 dialog is shown. |
63 dialog is shown. |
64 """ |
64 """ |
65 path = self.targetDirPicker.text() |
65 path = self.targetDirPicker.text() |
66 if not path: |
66 if not path: |
67 path = self.startdir |
67 path = self.startdir |
68 self.sourceFilesPicker.setDefaultDirectory(path) |
68 self.sourceFilesPicker.setDefaultDirectory(path) |