Ticket #962: issue962.patch
File issue962.patch, 1023 bytes (added by , 14 years ago) |
---|
-
clientgui/DlgAdvPreferencesBase.cpp
45 45 strCaption.Printf(_("%s - Preferences"), pSkinAdvanced->GetApplicationName().c_str()); 46 46 } 47 47 48 this->SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );48 this->SetExtraStyle( GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY ); 49 49 this->Centre( wxBOTH ); 50 50 this->SetTitle(strCaption); 51 51 -
clientgui/DlgItemProperties.cpp
42 42 if (!pFrame) return; 43 43 44 44 SetSizeHints( wxDefaultSize, wxDefaultSize ); 45 SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );45 SetExtraStyle( GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY ); 46 46 47 47 m_bSizer1 = new wxBoxSizer( wxVERTICAL ); 48 48