mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-13 03:09:05 +08:00
Remember object settings dialog size and position. #3943
This commit is contained in:
parent
97cf94c694
commit
b12453cf59
@ -30,6 +30,9 @@ sub new {
|
|||||||
# notify tabs
|
# notify tabs
|
||||||
$self->{layers}->Closing;
|
$self->{layers}->Closing;
|
||||||
|
|
||||||
|
# save window size
|
||||||
|
wxTheApp->save_window_pos($self, "object_settings");
|
||||||
|
|
||||||
$self->EndModal(wxID_OK);
|
$self->EndModal(wxID_OK);
|
||||||
$self->Destroy;
|
$self->Destroy;
|
||||||
});
|
});
|
||||||
@ -41,6 +44,8 @@ sub new {
|
|||||||
$self->SetSizer($sizer);
|
$self->SetSizer($sizer);
|
||||||
$self->SetMinSize($self->GetSize);
|
$self->SetMinSize($self->GetSize);
|
||||||
|
|
||||||
|
wxTheApp->restore_window_pos($self, "object_settings");
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user