Commit 3060b7f3 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/interface.cpp: fix for the interface resizing when video is stopped.

parent 8e751df6
...@@ -217,7 +217,7 @@ Interface::Interface( intf_thread_t *_p_intf ): ...@@ -217,7 +217,7 @@ Interface::Interface( intf_thread_t *_p_intf ):
wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition, wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition,
wxSize(0,0) ); wxSize(0,0) );
p_dummy->SetFocus(); p_dummy->SetFocus();
frame_sizer->Add( p_dummy, 0, wxEXPAND ); frame_sizer->Add( p_dummy, 0, 0 );
/* Creation of the menu bar */ /* Creation of the menu bar */
CreateOurMenuBar(); CreateOurMenuBar();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment