File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
openglider/gui/wizzards/input Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments