Skip to content

Commit 7929213

Browse files
committed
add label to shapewizard
1 parent 2f5debf commit 7929213

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openglider/gui/wizzards/input/shape.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,9 @@ def __init__(self, shape: ParametricShape):
242242
self.input_scale.insertItem(1, "Scale Area")
243243
self.input_scale.insertItem(2, "Scale Span")
244244

245-
self.zrot = False
246245
self.input_zrot = QtWidgets.QCheckBox()
246+
self.input_zrot.setText("Apply ZRot")
247247
self.input_zrot.setChecked(False)
248-
layout.addWidget(self.input_zrot)
249248

250249
self.input_zrot.clicked.connect(self._update)
251250
self.input_area.on_changed.append(self._update)
@@ -258,6 +257,7 @@ def __init__(self, shape: ParametricShape):
258257
layout.addWidget(self.input_sweep)
259258
layout.addWidget(self.input_cell_count)
260259
layout.addWidget(self.input_scale)
260+
layout.addWidget(self.input_zrot)
261261

262262
def _update(self, value: Any=None) -> None:
263263
self.settings.area = self.input_area.value

0 commit comments

Comments
 (0)