Commit 631c8363 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: updatedialog: fix size.

Default size was wrong.
Text was really hard to real in that tiny box: lots of line breaks and
scrollbars. Text should fit in a single viewport.
Max size has been increased to 500, screen assumed at least 640px wide.
parent c1a70282
......@@ -184,9 +184,9 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
b_checked = false;
setMinimumSize( 300, 300 );
setMaximumSize( 400, 300 );
setMaximumSize( 500, 300 );
restoreWidgetPosition( "Update", QSize( 300, 250 ) );
restoreWidgetPosition( "Update", maximumSize() );
/* Check for updates */
UpdateOrDownload();
......
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