store tools under 'tools' variable

This commit is contained in:
iLLiCiTiT 2021-10-19 17:50:10 +02:00
parent 6a68cfd4c9
commit 90de4cddb5
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class LocalExperimentalToolsWidgets(QtWidgets.QWidget):
experimental_defs = ExperimentalTools()
checkboxes_by_identifier = {}
for tool in experimental_defs.experimental_tools:
for tool in experimental_defs.tools:
checkbox = QtWidgets.QCheckBox(self)
label_widget = QtWidgets.QLabel(tool.label, self)
checkbox.setToolTip(tool.tooltip)