1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-08 11:26:59 +02:00

* wxwidgets/updatevlc.cpp: Resize the tree control when resizing the window

This commit is contained in:
Olivier Teulière 2005-08-07 11:46:25 +00:00
parent 99629fc247
commit 836900c56f

View File

@ -124,7 +124,7 @@ UpdateVLC::UpdateVLC( intf_thread_t *_p_intf, wxWindow *p_parent ):
wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer *subpanel_sizer = new wxBoxSizer( wxHORIZONTAL );
panel_sizer->Add( updates_tree, 0, wxGROW | wxALL, 5 );
panel_sizer->Add( updates_tree, 1, wxGROW | wxALL, 5 );
wxButton *update_button =
new wxButton( panel, CheckForUpdate_Event,
wxU(_("Check for updates now !")) );
@ -147,7 +147,7 @@ UpdateVLC::UpdateVLC( intf_thread_t *_p_intf, wxWindow *p_parent ):
panel_sizer->Add( subpanel_sizer, 0, wxALL , 0 );
panel_sizer->Layout();
panel->SetSizerAndFit( panel_sizer );
main_sizer->Add( panel, 0, wxALL | wxGROW, 0 );
main_sizer->Add( panel, 1, wxALL | wxGROW, 0 );
main_sizer->Layout();
SetSizerAndFit( main_sizer );