Commit 72c9e632 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Fix playlist sizing

Close #3523
(cherry picked from commit b045a7056f93af99e0b92053b08f3d8471c31551)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent dc50b891
......@@ -235,7 +235,6 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/**** FINAL SIZING and placement of interface */
settings->beginGroup( "MainWindow" );
QVLCTools::restoreWidgetPosition( settings, this, QSize(400, 100) );
/* Playlist */
int i_plVis = settings->value( "playlist-visible", false ).toBool();
......@@ -243,6 +242,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
if( i_plVis ) togglePlaylist();
QVLCTools::restoreWidgetPosition( settings, this, QSize(400, 100) );
/* Final sizing and showing */
setVisible( !b_hideAfterCreation );
......
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