33 @param parent parent widget (QWidget) |
33 @param parent parent widget (QWidget) |
34 """ |
34 """ |
35 super().__init__(parent, Qt.WindowFlags(Qt.Window)) |
35 super().__init__(parent, Qt.WindowFlags(Qt.Window)) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 if vcs.versionStr < '1.5.0': |
38 if vcs.version < (1, 5, 0): |
39 self.changeListsGroup.hide() |
39 self.changeListsGroup.hide() |
40 |
40 |
41 def showEvent(self, evt): |
41 def showEvent(self, evt): |
42 """ |
42 """ |
43 Public method called when the dialog is about to be shown. |
43 Public method called when the dialog is about to be shown. |