Do not close application when user select 'Cancel' in the save dirty project dialog
This commit is contained in:
parent
1c35dfe591
commit
5bbc68df7b
1 changed files with 4 additions and 2 deletions
|
@ -213,8 +213,10 @@ DPIFrame(NULL, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_S
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_plater != nullptr)
|
if (m_plater != nullptr && !m_plater->save_project_if_dirty()) {
|
||||||
m_plater->save_project_if_dirty();
|
event.Veto();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (event.CanVeto() && !wxGetApp().check_and_save_current_preset_changes()) {
|
if (event.CanVeto() && !wxGetApp().check_and_save_current_preset_changes()) {
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue