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

Qt: fix VLM geometry restoration

Forgotten in previous commit
parent 0ee6cb86
...@@ -155,7 +155,11 @@ VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCDialog( (QWidget*)_p_intf-> ...@@ -155,7 +155,11 @@ VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCDialog( (QWidget*)_p_intf->
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 ) );
if( !restoreGeometry( getSettings()->value("VLM/geometry").toByteArray() ) )
{
resize( QSize( 700, 500 ) );
}
} }
VLMDialog::~VLMDialog() VLMDialog::~VLMDialog()
......
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