fix type prusa -> super

This commit is contained in:
supermerill 2021-08-13 13:17:18 +02:00 committed by supermerill
parent 7735a0841e
commit 9bb643f7ca

View File

@ -592,8 +592,8 @@ bool take_config_snapshot_cancel_on_error(const AppConfig &app_config, Snapshot:
return true; return true;
} catch (std::exception &err) { } catch (std::exception &err) {
wxRichMessageDialog dlg(static_cast<wxWindow*>(wxGetApp().mainframe), wxRichMessageDialog dlg(static_cast<wxWindow*>(wxGetApp().mainframe),
_L("PrusaSlicer has encountered an error while taking a configuration snapshot.") + "\n\n" + from_u8(err.what()) + "\n\n" + from_u8(message), _L("SuperSlicer has encountered an error while taking a configuration snapshot.") + "\n\n" + from_u8(err.what()) + "\n\n" + from_u8(message),
_L("PrusaSlicer error"), _L("SuperSlicer error"),
wxYES_NO); wxYES_NO);
dlg.SetYesNoLabels(_L("Continue"), _L("Abort")); dlg.SetYesNoLabels(_L("Continue"), _L("Abort"));
return dlg.ShowModal() == wxID_YES; return dlg.ShowModal() == wxID_YES;