Fix kwarg names in calls to on_file_saveprojectas: thread -> use_thread, quit -> quit_action

This commit is contained in:
Mike Smith 2019-09-03 23:38:03 -04:00
parent 8becb4b506
commit 84aba5da34
2 changed files with 2 additions and 2 deletions

View File

@ -3667,7 +3667,7 @@ class App(QtCore.QObject):
response = msgbox.clickedButton()
if response == bt_yes:
self.on_file_saveprojectas(thread=True, quit=True)
self.on_file_saveprojectas(use_thread=True, quit_action=True)
elif response == bt_no:
self.quit_application()
elif response == bt_cancel:

View File

@ -174,7 +174,7 @@ def restart_program(app):
response = msgbox.clickedButton()
if response == bt_yes:
app.on_file_saveprojectas(thread=True, quit=True)
app.on_file_saveprojectas(use_thread=True, quit_action=True)
app.save_defaults()
python = sys.executable