1
0
Fork 0

Launcher: fix window flags on the "Add catalog" progress dialog

This commit is contained in:
Alessandro Menti 2016-04-13 20:54:15 +02:00 committed by James Turner
parent e9e05081d5
commit 4820026907

View file

@ -29,7 +29,12 @@
using namespace simgear::pkg;
AddCatalogDialog::AddCatalogDialog(QWidget *parent, RootRef root) :
QDialog(parent),
QDialog(parent, Qt::Dialog
| Qt::CustomizeWindowHint
| Qt::WindowTitleHint
| Qt::WindowSystemMenuHint
| Qt::WindowContextHelpButtonHint
| Qt::MSWindowsFixedSizeDialogHint),
m_state(STATE_START),
ui(new Ui::AddCatalogDialog),
m_packageRoot(root)