Browse Source

fix the fix

master
Nils 5 years ago
parent
commit
ac7f0a8832
  1. 2
      qtgui/mainwindow.py

2
qtgui/mainwindow.py

@ -364,7 +364,7 @@ class MainWindow(QtWidgets.QMainWindow):
for key in settings.allKeys(): for key in settings.allKeys():
if key in actions: #if not it doesn't matter. this is all uncritical. if key in actions: #if not it doesn't matter. this is all uncritical.
if key in types: if key in types:
actions[key](settings.value(key), type=types[key]) actions[key](settings.value(key, type=types[key]))
else: else:
actions[key](settings.value(key)) actions[key](settings.value(key))

Loading…
Cancel
Save