- fixed the sizePolicy for the FCComboBox widgets in the Preferences that holds the preprocessors - done correctly

This commit is contained in:
Marius Stanciu
2020-10-29 16:50:10 +02:00
parent a476d9d8f1
commit e6c9aee45b
2 changed files with 2 additions and 2 deletions

View File

@@ -259,7 +259,7 @@ class GeometryOptPrefGroupUI(OptionsGroupUI):
)
self.pp_geometry_name_cb = FCComboBox()
self.pp_geometry_name_cb.setFocusPolicy(Qt.StrongFocus)
self.pp_geometry_name_cb.setSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Preferred)
self.pp_geometry_name_cb.setSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.Preferred)
grid1.addWidget(pp_label, 13, 0)
grid1.addWidget(self.pp_geometry_name_cb, 13, 1)