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

Qt: bigger help dialog.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 610eb037
...@@ -52,7 +52,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -52,7 +52,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
{ {
setWindowTitle( qtr( "Help" ) ); setWindowTitle( qtr( "Help" ) );
setMinimumSize( 250, 300 ); setMinimumSize( 350, 300 );
QGridLayout *layout = new QGridLayout( this ); QGridLayout *layout = new QGridLayout( this );
QTextBrowser *helpBrowser = new QTextBrowser( this ); QTextBrowser *helpBrowser = new QTextBrowser( this );
...@@ -65,7 +65,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -65,7 +65,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
layout->addWidget( closeButton, 1, 3 ); layout->addWidget( closeButton, 1, 3 );
BUTTONACT( closeButton, close() ); BUTTONACT( closeButton, close() );
readSettings( "Help", QSize( 400, 450 ) ); readSettings( "Help", QSize( 500, 450 ) );
} }
HelpDialog::~HelpDialog() 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