Commit e9d699e4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: change dialog size.

parent f60496a6
...@@ -96,7 +96,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf ) ...@@ -96,7 +96,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
#endif #endif
BUTTONACT( closeButton, close() ); BUTTONACT( closeButton, close() );
readSettings( "Bookmarks", QSize( 435, 206 ) ); readSettings( "Bookmarks", QSize( 435, 280 ) );
updateGeometry(); updateGeometry();
} }
......
...@@ -87,7 +87,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -87,7 +87,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
BUTTONACT( okButton, close() ); BUTTONACT( okButton, close() );
setMinimumSize( 500, 300 ); setMinimumSize( 500, 300 );
readSettings( "Plugins", QSize( 500, 300 ) ); readSettings( "Plugins", QSize( 540, 400 ) );
} }
inline void PluginDialog::FillTree() inline void PluginDialog::FillTree()
......
...@@ -157,12 +157,14 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa ...@@ -157,12 +157,14 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
BUTTONACT( ui.saveButton, saveModifications() ); BUTTONACT( ui.saveButton, saveModifications() );
BUTTONACT( ui.inputButton, selectInput() ); BUTTONACT( ui.inputButton, selectInput() );
BUTTONACT( ui.outputButton, selectOutput() ); BUTTONACT( ui.outputButton, selectOutput() );
//readSettings( "VLM", QSize( 700, 500 ) );
} }
VLMDialog::~VLMDialog() VLMDialog::~VLMDialog()
{ {
delete vlmWrapper; delete vlmWrapper;
//writeSettings( "VLM" );
/* TODO :you have to destroy vlm here to close /* TODO :you have to destroy vlm here to close
* but we shouldn't destroy vlm here in case somebody else wants it */ * but we shouldn't destroy vlm here in case somebody else wants it */
if( p_vlm ) if( p_vlm )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment