]> git.sesse.net Git - vlc/commitdiff
Qt4 - Put the default header to 39 in the playlist.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 11 Feb 2008 05:52:24 +0000 (05:52 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 11 Feb 2008 05:52:24 +0000 (05:52 +0000)
modules/gui/qt4/components/playlist/playlist_item.cpp

index c0f394e1a91f52bc367851f2f3218ff9aec3dadd..06c1a679c6d770e3fa35f9ac194f6922b22b12e1 100644 (file)
@@ -69,8 +69,8 @@ void PLItem::init( int _i_id, int _i_input_id, PLItem *parent, PLModel *m )
         else
         {
             QSettings settings( "vlc", "vlc-qt-interface" );
-            i_showflags = settings.value( "qt-pl-showflags" ).toInt();
-            if( i_showflags < 1) 
+            i_showflags = settings.value( "qt-pl-showflags", 39 ).toInt();
+            if( i_showflags < 1)
                 i_showflags = 39; //reasonable default to show something;
             updateColumnHeaders();
         }