Change default setting for dialog to false

This commit is contained in:
Sébastien Clément 2018-01-15 10:29:46 +01:00 committed by GitHub
parent 7d0bd5a0a0
commit 7b7e8fa545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ class SimpleemergencystopPlugin(octoprint.plugin.StartupPlugin,
def get_settings_defaults(self):
return dict(
emergencyGCODE="M112",
confirmationDialog = True
confirmationDialog = False
)
def on_settings_save(self, data):