From: Jean-Baptiste Kempf Date: Sun, 28 Oct 2007 06:59:03 +0000 (+0000) Subject: Qt4 - small layout modification . X-Git-Tag: 0.9.0-test0~4776 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b1262408007b1ceb5e9a790efccd6b84c1821f83;p=vlc Qt4 - small layout modification . --- diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp index 4fe8de6719..aa37f123a5 100644 --- a/modules/gui/qt4/components/interface_widgets.cpp +++ b/modules/gui/qt4/components/interface_widgets.cpp @@ -422,9 +422,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) : BUTTON_SET_ACT_I( nextButton, "", next.png, qtr( "Next" ), next() ); BUTTON_SET_ACT_I( stopButton, "", stop.png, qtr( "Stop" ), stop() ); - controlLayout->setColumnStretch( 8 , 10 ); - controlLayout->setColumnStretch( 9, 0 ); - + controlLayout->setColumnStretch( 7 , 2 ); + /* * Other first Line buttons * Might need to be inside a frame to avoid a few resizing pb @@ -450,7 +449,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) : controlLayout->addWidget( extSettingsButton, 3, 12 ); controlLayout->setColumnStretch( 14, 5 ); - + /* Volume */ VolumeClickHandler *h = new VolumeClickHandler( p_intf, this );