We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SizePolicy
1 parent 4689565 commit 7a6f9bcCopy full SHA for 7a6f9bc
1 file changed
activity_browser/ui/widgets/abstract_pane.py
@@ -14,6 +14,7 @@ def __init__(self, parent=None):
14
super().__init__(parent)
15
self.name = self.name or re.sub(r'([a-z])([A-Z])', r'\1_\2', self.__class__.__name__).lower()
16
self.setObjectName(self.name)
17
+ self.setSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.Expanding)
18
19
def getDockWidget(self, main_window: QtWidgets.QMainWindow):
20
0 commit comments