Commit 46c88072 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Save the settings from the playlist for the dialog Provider if ever needed.

parent 2fd9216f
...@@ -46,7 +46,8 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) ...@@ -46,7 +46,8 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf )
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
QHBoxLayout *l = new QHBoxLayout( centralWidget() ); QHBoxLayout *l = new QHBoxLayout( centralWidget() );
PlaylistWidget *plw = new PlaylistWidget( p_intf, NULL ); QSettings *settings = new QSettings( "vlc", "vlc-qt-interface" );
PlaylistWidget *plw = new PlaylistWidget( p_intf, settings );
l->addWidget( plw ); l->addWidget( plw );
readSettings( "playlist", QSize( 600,700 ) ); readSettings( "playlist", QSize( 600,700 ) );
......
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