Commit c5f1421c authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: AboutDialog: reset dialog on show.

parent 2b26844a
......@@ -163,6 +163,13 @@ bool AboutDialog::eventFilter(QObject *obj, QEvent *event)
return QVLCDialog::eventFilter( obj, event);
}
void AboutDialog::showEvent( QShowEvent *event )
{
ui.stackedWidget->setCurrentWidget( ui.blablaPage );
QVLCDialog::showEvent( event );
}
#ifdef UPDATE_CHECK
/*****************************************************************************
......
......@@ -62,6 +62,7 @@ public slots:
protected:
bool eventFilter(QObject *obj, QEvent *event);
virtual void showEvent ( QShowEvent * );
private:
bool b_advanced;
......
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