From 4a0b2e681b610ab317ecb253fde4c0ebad4d423a Mon Sep 17 00:00:00 2001 From: supermerill Date: Sun, 26 Sep 2021 21:21:15 +0200 Subject: [PATCH] typo --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 833adb391..0c595b799 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4903,7 +4903,7 @@ const PrintBase* Plater::current_print() const { bool Plater::check_project_unsaved_changes() { if (wxGetApp().app_config->get("default_action_on_new_project") == "1" && p->has_project_change(wxGetApp().preset_bundle->full_config_secure(), p->model)) { - wxMessageDialog diag = wxMessageDialog(static_cast(this), _L("You have unsaved Changed, do you want to save your project or to remove all settings and objects?"), wxString(SLIC3R_APP_NAME), wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxCENTRE); + wxMessageDialog diag = wxMessageDialog(static_cast(this), _L("You have unsaved changes, do you want to save your project or to remove all settings and objects?"), wxString(SLIC3R_APP_NAME), wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxCENTRE); diag.SetYesNoLabels(_L("Discard"), _L("Save")); //diag.SetOKLabel(_L("Always discard")); int result = diag.ShowModal();