]> git.sesse.net Git - vlc/commitdiff
Qt: change dialog size.
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 16 Jan 2009 16:58:43 +0000 (17:58 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 16 Jan 2009 17:44:39 +0000 (18:44 +0100)
modules/gui/qt4/dialogs/bookmarks.cpp
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/vlm.cpp

index 1b669077815ad233bd161d5f3831364db92102c7..d114b97d351643339b18e812ce27288892dc8f84 100644 (file)
@@ -96,7 +96,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
 #endif
     BUTTONACT( closeButton, close() );
 
-    readSettings( "Bookmarks", QSize( 435, 206 ) );
+    readSettings( "Bookmarks", QSize( 435, 280 ) );
     updateGeometry();
 }
 
index 9b1665d2e425edbe7975522d94cf4aca04411a51..528e24b4079565f217797d2b733115bb50d030f2 100644 (file)
@@ -87,7 +87,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
     BUTTONACT( okButton, close() );
 
     setMinimumSize( 500, 300 );
-    readSettings( "Plugins", QSize( 500, 300 ) );
+    readSettings( "Plugins", QSize( 540, 400 ) );
 }
 
 inline void PluginDialog::FillTree()
index dc3b4c940318a6324a0a4037f5cc2e4b50d2946d..ec938f958f2dff89dde092d1d65cd1c1aef5fb97 100644 (file)
@@ -157,12 +157,14 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
     BUTTONACT( ui.saveButton, saveModifications() );
     BUTTONACT( ui.inputButton, selectInput() );
     BUTTONACT( ui.outputButton, selectOutput() );
+    //readSettings( "VLM", QSize( 700, 500 ) );
 }
 
 VLMDialog::~VLMDialog()
 {
     delete vlmWrapper;
 
+    //writeSettings( "VLM" );
    /* TODO :you have to destroy vlm here to close
     * but we shouldn't destroy vlm here in case somebody else wants it */
     if( p_vlm )