BCDA-APS / gemviz

Data visualization for tiled
https://bcda-aps.github.io/gemviz/
Other
4 stars 0 forks source link

integrate results table UI into demo app #31

Closed prjemian closed 1 year ago

prjemian commented 1 year ago

Integrate the results table UI widget into the demo application

prjemian commented 1 year ago
prjemian commented 1 year ago

But the QGroupBox does not have a setWidget() method. It needs a layout for this.

from resultspanel import ResultsPanel
# ...
results = ResultsPanel(self)
layout = QtWidgets.QVBoxLayout()
layout.addWidget(results)
self.runs_groupbox.setLayout(layout)