[vlc-devel] commit: Qt: change dialog size. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Fri Jan 16 18:45:34 CET 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jan 16 17:58:43 2009 +0100| [e9d699e47811db308878b361f67cf67d8a39087b] | committer: Jean-Baptiste Kempf
Qt: change dialog size.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e9d699e47811db308878b361f67cf67d8a39087b
---
modules/gui/qt4/dialogs/bookmarks.cpp | 2 +-
modules/gui/qt4/dialogs/plugins.cpp | 2 +-
modules/gui/qt4/dialogs/vlm.cpp | 2 ++
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/dialogs/bookmarks.cpp b/modules/gui/qt4/dialogs/bookmarks.cpp
index 1b66907..d114b97 100644
--- a/modules/gui/qt4/dialogs/bookmarks.cpp
+++ b/modules/gui/qt4/dialogs/bookmarks.cpp
@@ -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();
}
diff --git a/modules/gui/qt4/dialogs/plugins.cpp b/modules/gui/qt4/dialogs/plugins.cpp
index 9b1665d..528e24b 100644
--- a/modules/gui/qt4/dialogs/plugins.cpp
+++ b/modules/gui/qt4/dialogs/plugins.cpp
@@ -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()
diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp
index dc3b4c9..ec938f9 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -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 )
More information about the vlc-devel
mailing list