73 @param mode mode of the dialog |
73 @param mode mode of the dialog |
74 @type str (one of log, full_log, incoming, outgoing) |
74 @type str (one of log, full_log, incoming, outgoing) |
75 @param parent parent widget |
75 @param parent parent widget |
76 @type QWidget |
76 @type QWidget |
77 """ |
77 """ |
78 super(HgLogBrowserDialog, self).__init__(parent) |
78 super().__init__(parent) |
79 self.setupUi(self) |
79 self.setupUi(self) |
80 |
80 |
81 windowFlags = self.windowFlags() |
81 windowFlags = self.windowFlags() |
82 windowFlags |= Qt.WindowType.WindowContextHelpButtonHint |
82 windowFlags |= Qt.WindowType.WindowContextHelpButtonHint |
83 self.setWindowFlags(windowFlags) |
83 self.setWindowFlags(windowFlags) |