45 @param parent parent widget of this dialog (QWidget) |
45 @param parent parent widget of this dialog (QWidget) |
46 """ |
46 """ |
47 super().__init__(parent) |
47 super().__init__(parent) |
48 self.setupUi(self) |
48 self.setupUi(self) |
49 |
49 |
50 self.searchDirPicker.setMode(E5PathPickerModes.DirectoryMode) |
50 self.searchDirPicker.setMode(E5PathPickerModes.DIRECTORY_MODE) |
51 |
51 |
52 self.fileList.headerItem().setText(self.fileList.columnCount(), "") |
52 self.fileList.headerItem().setText(self.fileList.columnCount(), "") |
53 |
53 |
54 self.stopButton = self.buttonBox.addButton( |
54 self.stopButton = self.buttonBox.addButton( |
55 self.tr("Stop"), QDialogButtonBox.ButtonRole.ActionRole) |
55 self.tr("Stop"), QDialogButtonBox.ButtonRole.ActionRole) |