Ticket #962: issue962.patch

File issue962.patch, 1023 bytes (added by cli, 14 years ago)

Patch for #962

  • clientgui/DlgAdvPreferencesBase.cpp

     
    4545        strCaption.Printf(_("%s - Preferences"), pSkinAdvanced->GetApplicationName().c_str());
    4646    }
    4747
    48     this->SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );
     48    this->SetExtraStyle( GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY );
    4949    this->Centre( wxBOTH );
    5050    this->SetTitle(strCaption);
    5151
  • clientgui/DlgItemProperties.cpp

     
    4242    if (!pFrame) return;
    4343
    4444        SetSizeHints( wxDefaultSize, wxDefaultSize );
    45         SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );
     45        SetExtraStyle( GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY );
    4646       
    4747        m_bSizer1 = new wxBoxSizer( wxVERTICAL );
    4848