1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-25 04:37:22 +01:00

fixed help dialogs: they are now shown on show(), not when created (fixed #1655)

This commit is contained in:
Roman Bovsunivskiy 2010-08-04 19:16:58 +00:00
parent 4be28e19de
commit 387bce14ca
2 changed files with 6 additions and 0 deletions

View File

@ -181,3 +181,8 @@ void Help::showEvent(QShowEvent *event)
restoreGeometry(window_geometry);
QDialog::showEvent(event);
}
void Help::show()
{
Help::showNormal();
}

View File

@ -72,6 +72,7 @@ public:
public slots:
void downloadComplete(const QString&);
void show();
};