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 )
#endif
BUTTONACT( closeButton, close() );
readSettings( "Bookmarks", QSize( 435, 206 ) );
readSettings( "Bookmarks", QSize( 435, 280 ) );
updateGeometry();
}
......
......@@ -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()
......
......@@ -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 )
......
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