26 @param branchesList list of branches (list of strings) |
26 @param branchesList list of branches (list of strings) |
27 @param bookmarksList list of bookmarks (list of strings) |
27 @param bookmarksList list of bookmarks (list of strings) |
28 @param showNone flag influencing the label of the 'None' selection (boolean) |
28 @param showNone flag influencing the label of the 'None' selection (boolean) |
29 @param parent parent widget (QWidget) |
29 @param parent parent widget (QWidget) |
30 """ |
30 """ |
31 QDialog.__init__(self, parent) |
31 super().__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 |
33 |
34 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
34 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
35 |
35 |
36 self.tagCombo.addItems(sorted(tagsList)) |
36 self.tagCombo.addItems(sorted(tagsList)) |