Skip to content
Snippets Groups Projects
Commit 1ebb4db7 authored by payno's avatar payno
Browse files

BinningWidgetOW: use main area instead of control area

parent 4b28782a
No related branches found
No related tags found
No related merge requests found
Pipeline #180192 failed
......@@ -19,8 +19,7 @@ class BinningWidgetOW(OWEwoksWidgetOneThread, ewokstaskclass=Binning):
name = "binning"
icon = "icons/resize.png"
# TODO: why not using the main arear instead of the control area
want_main_area = False
want_main_area = True
_ewoks_inputs_to_hide_from_orange = ("scale", "output_dir")
......@@ -28,7 +27,7 @@ class BinningWidgetOW(OWEwoksWidgetOneThread, ewokstaskclass=Binning):
super().__init__()
self._widget = BinningWidget(parent=self)
self.controlArea.layout().addWidget(self._widget)
self.mainArea.layout().addWidget(self._widget)
# connect signal / slot
self._widget.sigScaleChanged.connect(self._scaleChanged)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment