From b8531b86e4ce41f4a4f0335f8fe41098fa8adbbe Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 7 Jul 2021 15:22:42 +0200 Subject: [PATCH] Changed one line in CZ dictionary for the Configuration Substitutions dialog. Fixed one bug in the preceding commit. --- src/slic3r/GUI/GUI_App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 397343437..ec1dce508 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -1878,7 +1878,7 @@ void GUI_App::add_config_menu(wxMenuBar *menu) if (!dlg.snapshot_to_activate().empty()) { if (! Config::SnapshotDB::singleton().is_on_snapshot(*app_config) && ! Config::take_config_snapshot_cancel_on_error(*app_config, Config::Snapshot::SNAPSHOT_BEFORE_ROLLBACK, "", - GUI::format(_L("Continue to activate a configuration snapshot %1%?", ex.what())))) + GUI::format(_L("Continue to activate a configuration snapshot %1%?"), dlg.snapshot_to_activate()))) break; try { app_config->set("on_snapshot", Config::SnapshotDB::singleton().restore_snapshot(dlg.snapshot_to_activate(), *app_config).id);