Skip to content

Commit b67c7b5

Browse files
authored
fix for a QtGui to QtWidgets conversion that was missed (#48)
1 parent d6caa97 commit b67c7b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gui/custom_variables_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def __init__(self, parent, gui_name, is_experiment=False):
313313
self.parent.print_to_log(f'\nLoading "{gui_name}" custom variable dialog')
314314
self.setWindowTitle("Set Variables")
315315
self.layout = QtWidgets.QVBoxLayout(self)
316-
toolBar = QtGui.QToolBar()
316+
toolBar = QtWidgets.QToolBar()
317317
toolBar.setToolButtonStyle(QtCore.Qt.ToolButtonStyle.ToolButtonTextBesideIcon)
318318
toolBar.setIconSize(QtCore.QSize(15, 15))
319319
self.layout.addWidget(toolBar)

0 commit comments

Comments
 (0)