don't limit the multiple choice dialog size to 300x200 pixels on big screens, this doesn't make sense
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48301 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -302,11 +302,8 @@ bool wxAnyChoiceDialog::Create(wxWindow *parent,
|
|||||||
|
|
||||||
wxListBoxBase *wxAnyChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
|
wxListBoxBase *wxAnyChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
|
||||||
{
|
{
|
||||||
wxSize size = wxDefaultSize;
|
|
||||||
if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
|
|
||||||
size = wxSize(300, 200);
|
|
||||||
return new wxListBox( this, wxID_LISTBOX,
|
return new wxListBox( this, wxID_LISTBOX,
|
||||||
wxDefaultPosition, size,
|
wxDefaultPosition, wxDefaultSize,
|
||||||
n, choices,
|
n, choices,
|
||||||
styleLbox );
|
styleLbox );
|
||||||
}
|
}
|
||||||
@@ -541,12 +538,8 @@ bool wxMultiChoiceDialog::TransferDataFromWindow()
|
|||||||
|
|
||||||
wxListBoxBase *wxMultiChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
|
wxListBoxBase *wxMultiChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
|
||||||
{
|
{
|
||||||
wxSize size = wxDefaultSize;
|
|
||||||
if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
|
|
||||||
size = wxSize(300, 200);
|
|
||||||
|
|
||||||
return new wxCheckListBox( this, wxID_LISTBOX,
|
return new wxCheckListBox( this, wxID_LISTBOX,
|
||||||
wxDefaultPosition, size,
|
wxDefaultPosition, wxDefaultSize,
|
||||||
n, choices,
|
n, choices,
|
||||||
styleLbox );
|
styleLbox );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user