UnsavedChangesDialog: Updated icons on "Discard" buttons

+ Put "exit" icon on "Quit" menu item
This commit is contained in:
YuSanka 2020-10-16 13:19:59 +02:00 committed by Oleksandra Yushchenko
parent 54cbf2abc3
commit 0f85777a79
4 changed files with 65 additions and 20 deletions
src/slic3r/GUI

View file

@ -1139,7 +1139,7 @@ void MainFrame::init_menubar()
[this](wxCommandEvent&) { start_new_gcodeviewer_open_file(this); }, "", nullptr);
fileMenu->AppendSeparator();
append_menu_item(fileMenu, wxID_EXIT, _L("&Quit"), wxString::Format(_L("Quit %s"), SLIC3R_APP_NAME),
[this](wxCommandEvent&) { Close(false); });
[this](wxCommandEvent&) { Close(false); }, "exit");
}
#if !ENABLE_GCODE_VIEWER