Remember object settings dialog size and position. #3943

This commit is contained in:
Alessandro Ranellucci 2017-05-10 16:17:28 +02:00
parent 97cf94c694
commit b12453cf59

View File

@ -30,6 +30,9 @@ sub new {
# notify tabs
$self->{layers}->Closing;
# save window size
wxTheApp->save_window_pos($self, "object_settings");
$self->EndModal(wxID_OK);
$self->Destroy;
});
@ -41,6 +44,8 @@ sub new {
$self->SetSizer($sizer);
$self->SetMinSize($self->GetSize);
wxTheApp->restore_window_pos($self, "object_settings");
return $self;
}