271 ) |
271 ) |
272 self.summaryList.header().setSectionResizeMode( |
272 self.summaryList.header().setSectionResizeMode( |
273 QHeaderView.ResizeMode.Interactive |
273 QHeaderView.ResizeMode.Interactive |
274 ) |
274 ) |
275 |
275 |
276 def closeEvent(self, evt): |
276 def closeEvent(self, _evt): |
277 """ |
277 """ |
278 Protected method to handle the close event. |
278 Protected method to handle the close event. |
279 |
279 |
280 @param evt reference to the close event |
280 @param _evt reference to the close event (unused) |
281 @type QCloseEvent |
281 @type QCloseEvent |
282 """ |
282 """ |
283 self.cancelled = True |
283 self.cancelled = True |
284 # The rest is done by the start() method. |
284 # The rest is done by the start() method. |
285 |
285 |