Skip to content
Snippets Groups Projects

Test Simulation GUI

Merged Oscar Gustafsson requested to merge simguitest into master
Files
2
@@ -120,12 +120,12 @@ class PlotWindow(QDialog):
# Add two buttons for selecting all/none:
hlayout = QHBoxLayout()
button_all = QPushButton("&All")
button_all.clicked.connect(self._button_all_click)
hlayout.addWidget(button_all)
button_none = QPushButton("&None")
button_none.clicked.connect(self._button_none_click)
hlayout.addWidget(button_none)
self._button_all = QPushButton("&All")
self._button_all.clicked.connect(self._button_all_click)
hlayout.addWidget(self._button_all)
self._button_none = QPushButton("&None")
self._button_none.clicked.connect(self._button_none_click)
hlayout.addWidget(self._button_none)
listlayout.addLayout(hlayout)
# Add the entire list
Loading