]> git.sesse.net Git - vlc/commitdiff
Qt4 - Dialog sizing.
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 8 Sep 2007 00:36:28 +0000 (00:36 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 8 Sep 2007 00:36:28 +0000 (00:36 +0000)
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/dialogs/mediainfo.cpp

index ee5fbf55ebdb8effb4fd286c7dc9211754565a94..001baeff9659c179ad57862ca466c8889b604ca3 100644 (file)
@@ -126,7 +126,7 @@ MetaPanel::MetaPanel( QWidget *parent,
     nowplaying_text->setReadOnly( true );
     ADD_META_2( VLC_META_PUBLISHER, publisher_text );
     ADD_META_2( VLC_META_COPYRIGHT, copyright_text );
-    ADD_META_2( "Comments:", description_text );
+    ADD_META_2( "Comments", description_text );
 
 /* useless metadata */
 
index 56f9e74e2cc422ea03de80f3c5c005a9bf5cb63b..c5b2a67b6cdeff862b4531701542d66dc2fa136c 100644 (file)
@@ -48,7 +48,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput,
     b_need_update = true;
 
     setWindowTitle( qtr( "Media information" ) );
-    resize( 600 , 300 );
+    resize( 600 , 480 );
 
     /* TabWidgets and Tabs creation */
     IT = new QTabWidget;