Skip to content

Commit

Permalink
QoL: Add option to not show non-utf8 step warn (#5327)
Browse files Browse the repository at this point in the history
* Add option to not show non-utf8 step warn
  • Loading branch information
Noisyfox authored May 18, 2024
1 parent 4bcc109 commit d69489c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4049,9 +4049,18 @@ std::vector<size_t> Plater::priv::load_files(const std::vector<fs::path>& input_
cancel = !cont;
},
[](int isUtf8StepFile) {
if (!isUtf8StepFile)
Slic3r::GUI::show_info(nullptr, _L("Name of components inside step file is not UTF8 format!") + "\n\n" + _L("The name may show garbage characters!"),
_L("Attention!"));
if (!isUtf8StepFile) {
const auto no_warn = wxGetApp().app_config->get_bool("step_not_utf8_no_warn");
if (!no_warn) {
MessageDialog dlg(nullptr, _L("Name of components inside step file is not UTF8 format!") + "\n\n" + _L("The name may show garbage characters!"),
wxString(SLIC3R_APP_FULL_NAME " - ") + _L("Attention!"), wxOK | wxICON_INFORMATION);
dlg.show_dsa_button(_L("Remember my choice."));
dlg.ShowModal();
if (dlg.get_checkbox_state()) {
wxGetApp().app_config->set_bool("step_not_utf8_no_warn", true);
}
}
}
},
nullptr, 0, obj_color_fun);

Expand Down

0 comments on commit d69489c

Please sign in to comment.