]> git.sesse.net Git - vlc/commitdiff
Qt4 : Fix a size in main controlsWidget.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 20 Aug 2007 09:42:32 +0000 (09:42 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 20 Aug 2007 09:42:32 +0000 (09:42 +0000)
modules/gui/qt4/components/interface_widgets.cpp

index 017af56cd6b29d12846c5b114a499e624a19b595..d04705bcd6ca5a9b8b3b1e3d96fc0ea052a328f5 100644 (file)
@@ -385,8 +385,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i ) :
 
     /** Playlist Button **/
     playlistButton = new QPushButton;
-    playlistButton->setMaximumSize( QSize( 26, 26 ) );
-    playlistButton->setIconSize( QSize( 20, 20 ) );
+    playlistButton->setMaximumSize( QSize( 45, 45 ) );
+    playlistButton->setIconSize( QSize( 30, 30 ) );
 
     controlLayout->addWidget( playlistButton, 3, 10 );