Ignore the Maximize option for dialogs which aren't supposed to be maximizable. Closes #1451.
Originally committed to SVN as r6446.
This commit is contained in:
parent
813f23e762
commit
489d5bbec6
1 changed files with 7 additions and 4 deletions
|
@ -37,9 +37,6 @@ PersistLocation::PersistLocation(wxDialog *dialog, std::string options_prefix)
|
|||
, maximize_opt(OPT_SET(options_prefix + "/Maximized"))
|
||||
, dialog(dialog)
|
||||
{
|
||||
dialog->Bind(wxEVT_MOVE, &PersistLocation::OnMove, this);
|
||||
dialog->Bind(wxEVT_SIZE, &PersistLocation::OnSize, this);
|
||||
|
||||
int x = x_opt->GetInt();
|
||||
int y = y_opt->GetInt();
|
||||
if (x == -1 && y == -1)
|
||||
|
@ -76,7 +73,13 @@ PersistLocation::PersistLocation(wxDialog *dialog, std::string options_prefix)
|
|||
dialog->Move(x, y);
|
||||
}
|
||||
|
||||
if (maximize_opt->GetBool()) dialog->Maximize();
|
||||
dialog->Bind(wxEVT_MOVE, &PersistLocation::OnMove, this);
|
||||
|
||||
if (dialog->GetWindowStyle() & wxMAXIMIZE_BOX) {
|
||||
dialog->Bind(wxEVT_SIZE, &PersistLocation::OnSize, this);
|
||||
if (maximize_opt->GetBool())
|
||||
dialog->Maximize();
|
||||
}
|
||||
}
|
||||
|
||||
void PersistLocation::OnMove(wxMoveEvent &e) {
|
||||
|
|
Loading…
Reference in a new issue