]> git.saurik.com Git - wxWidgets.git/commitdiff
Verbose languages such as German need a big
authorRobert Roebling <robert@roebling.de>
Thu, 13 Dec 2001 23:36:32 +0000 (23:36 +0000)
committerRobert Roebling <robert@roebling.de>
Thu, 13 Dec 2001 23:36:32 +0000 (23:36 +0000)
  wxFileDialog (like it already was in the
  2.2.X tree).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/filedlgg.cpp

index 7e969a82f59fa598e45d939ce02450116657b1bd..9ecc12930dae6dc9029918d977a975f2d2f38a95 100644 (file)
@@ -1007,10 +1007,10 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
 
     if (m_dialogStyle & wxMULTIPLE)
         m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition,
-                                 wxSize(440,180), s_lastViewStyle | wxSUNKEN_BORDER );
+                                 wxSize(540,200), s_lastViewStyle | wxSUNKEN_BORDER );
     else
         m_list = new wxFileCtrl( this, ID_LIST_CTRL, m_dir, firstWild, wxDefaultPosition,
-                                 wxSize(440,180), s_lastViewStyle | wxSUNKEN_BORDER | wxLC_SINGLE_SEL );
+                                 wxSize(540,200), s_lastViewStyle | wxSUNKEN_BORDER | wxLC_SINGLE_SEL );
     m_list -> ShowHidden(s_lastShowHidden);
     mainsizer->Add( m_list, 1, wxEXPAND | wxLEFT|wxRIGHT, 10 );