Commit 8d799fa0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Minimum size for help dialog.

parent 10de1dfd
......@@ -56,6 +56,7 @@ HelpDialog::HelpDialog( QWidget *parent, intf_thread_t *_p_intf )
: QVLCDialog( parent, _p_intf )
{
setWindowTitle( qtr( "Help" ) );
setMinimumSize( 250, 300 );
QGridLayout *layout = new QGridLayout( this );
QTextBrowser *helpBrowser = new QTextBrowser( this );
......@@ -68,6 +69,7 @@ HelpDialog::HelpDialog( QWidget *parent, intf_thread_t *_p_intf )
layout->addWidget( closeButton, 1, 3 );
BUTTONACT( closeButton, close() );
resize( 400, 450 );
}
HelpDialog::~HelpDialog()
......
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