mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-26 14:34:26 +08:00
Default to "No" when prompting about discarding unsaved changes.
This commit is contained in:
parent
82cfc7c3d6
commit
bd16366d62
@ -214,8 +214,8 @@ sub check_unsaved_changes {
|
|||||||
if (@dirty) {
|
if (@dirty) {
|
||||||
my $titles = join ', ', @dirty;
|
my $titles = join ', ', @dirty;
|
||||||
my $confirm = Wx::MessageDialog->new($self, "You have unsaved changes ($titles). Discard changes and continue anyway?",
|
my $confirm = Wx::MessageDialog->new($self, "You have unsaved changes ($titles). Discard changes and continue anyway?",
|
||||||
'Unsaved Presets', wxICON_QUESTION | wxOK | wxCANCEL);
|
'Unsaved Presets', wxICON_QUESTION | wxYES_NO | wxNO_DEFAULT);
|
||||||
return ($confirm->ShowModal == wxID_OK);
|
return ($confirm->ShowModal == wxID_YES);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user