From ead95817ba0fdb9a89dfa79a1801089b294d0aa4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 19 Jan 2002 23:24:00 +0000 Subject: [PATCH] moved 'show hidden dirs' checkbox elsewhere, the dialog was too wide for wxMGL git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/dirdlgg.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/generic/dirdlgg.cpp b/src/generic/dirdlgg.cpp index 7b230c3f3c..24a836a22c 100644 --- a/src/generic/dirdlgg.cpp +++ b/src/generic/dirdlgg.cpp @@ -86,6 +86,10 @@ wxGenericDirDialog::wxGenericDirDialog(wxWindow* parent, const wxString& title, topsizer->Add( m_dirCtrl, 1, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, 10 ); + // Make the an option depending on a flag? + wxCheckBox* check = new wxCheckBox( this, ID_SHOW_HIDDEN, _("Show hidden directories") ); + topsizer->Add( check, 0, wxLEFT|wxTOP | wxALIGN_RIGHT, 5 ); + // 2) text ctrl m_input = new wxTextCtrl( this, ID_TEXTCTRL, m_path, wxDefaultPosition ); topsizer->Add( m_input, 0, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, 10 ); @@ -98,10 +102,6 @@ wxGenericDirDialog::wxGenericDirDialog(wxWindow* parent, const wxString& title, // 4) Buttons wxSizer* buttonsizer = new wxBoxSizer( wxHORIZONTAL ); - // Make the an option depending on a flag? - wxCheckBox* check = new wxCheckBox( this, ID_SHOW_HIDDEN, _("Show hidden directories") ); - buttonsizer->Add( check, 0, wxLEFT|wxRIGHT, 10 ); - // I'm not convinced we need a New button, and we tend to get annoying // accidental-editing with label editing enabled. wxButton* newButton = new wxButton( this, ID_NEW, _("New...") ); -- 2.45.2