Skip to content
Snippets Groups Projects
Unverified Commit e75bf705 authored by Pete Peterson's avatar Pete Peterson Committed by GitHub
Browse files

Merge pull request #24585 from DTasev/fix_mwd_resize_event

Add super-class call for MWD resize event
parents b2f0a3b8 e8a385a1
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,9 @@ class MatrixWorkspaceTableView(QTableView): ...@@ -28,7 +28,9 @@ class MatrixWorkspaceTableView(QTableView):
header = self.horizontalHeader() header = self.horizontalHeader()
header.sectionDoubleClicked.connect(self.handle_double_click) header.sectionDoubleClicked.connect(self.handle_double_click)
def resizeEvent(self, _): def resizeEvent(self, event):
super(MatrixWorkspaceTableView, self).resizeEvent(event)
header = self.horizontalHeader() header = self.horizontalHeader()
header.setSectionResizeMode(QHeaderView.Interactive) header.setSectionResizeMode(QHeaderView.Interactive)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment