diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-12-11 02:15:32 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-12-11 02:15:32 +0000 |
| commit | ac88dd455f83302ac990fe41a862018bed09a3a4 (patch) | |
| tree | 68d1277cad92651f389850f975cba53b0b29ba89 /src | |
| parent | b72043d907cdb7d6a49acab61338811ca81411f2 (diff) | |
Fix dir picker layout with long names.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/dir_picker_ctrl.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/dir_picker_ctrl.cc b/src/wx/dir_picker_ctrl.cc index fe4937edf..0805c0bdf 100644 --- a/src/wx/dir_picker_ctrl.cc +++ b/src/wx/dir_picker_ctrl.cc @@ -55,6 +55,9 @@ DirPickerCtrl::SetPath (wxString p) wxCommandEvent ev (wxEVT_COMMAND_DIRPICKER_CHANGED, wxID_ANY); GetEventHandler()->ProcessEvent (ev); + + _sizer->Layout (); + _sizer->SetSizeHints (this); } wxString |
