- wip in porting to PyQt6: fixed OptionalInput and OptionalHideInput GUI elements

This commit is contained in:
Marius Stanciu
2021-08-09 12:25:20 +03:00
committed by Marius
parent 2daf191948
commit 061e109e45
7 changed files with 29 additions and 25 deletions

View File

@@ -5377,7 +5377,7 @@ class App(QtCore.QObject):
self.setWindowIcon(icon)
self.setWindowTitle(str(title))
grid0 = QtWidgets.QGridLayout(self)
grid0 = FCGridLayout(parent=self, h_spacing=5, v_spacing=5)
self.ref_radio = RadioSet([
{"label": _("Quadrant 1"), "value": "bl"},
@@ -5648,7 +5648,7 @@ class App(QtCore.QObject):
self.setWindowIcon(icon)
self.setWindowTitle(str(title))
grid0 = QtWidgets.QGridLayout(self)
grid0 = FCGridLayout(parent=self, h_spacing=5, v_spacing=5)
self.ref_radio = RadioSet([
{"label": _("Bottom Left"), "value": "bl"},