]> git.sesse.net Git - vlc/commitdiff
Qt: Remove the "media brower" label
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 22 Oct 2010 15:32:50 +0000 (17:32 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 22 Oct 2010 22:48:40 +0000 (00:48 +0200)
This adds exactly NOTHING to the usefulness of the UI

modules/gui/qt4/components/playlist/playlist.cpp

index 960904e18a97321f80a86b71e6abd5e6cdae3345..f9a6cff5ee7dd7a1bc823456e905f69b8cdd6268 100644 (file)
@@ -51,16 +51,9 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
     /* Source Selector */
     selector = new PLSelector( this, p_intf );
 
-    QLabel *selLabel = new QLabel( qtr( "Media Browser" ) );
-    QFont font;
-    font.setBold( true );
-    selLabel->setFont( font );
-    selLabel->setMargin( 5 );
-
     QVBoxLayout *selBox = new QVBoxLayout();
     selBox->setContentsMargins(0,0,0,0);
     selBox->setSpacing( 0 );
-    selBox->addWidget( selLabel );
     selBox->addWidget( selector );
 
     QWidget *mediaBrowser = new QWidget();