Launcher: fix window flags on the "Add catalog" progress dialog
This commit is contained in:
parent
e9e05081d5
commit
4820026907
1 changed files with 6 additions and 1 deletions
|
@ -29,7 +29,12 @@
|
||||||
using namespace simgear::pkg;
|
using namespace simgear::pkg;
|
||||||
|
|
||||||
AddCatalogDialog::AddCatalogDialog(QWidget *parent, RootRef root) :
|
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),
|
m_state(STATE_START),
|
||||||
ui(new Ui::AddCatalogDialog),
|
ui(new Ui::AddCatalogDialog),
|
||||||
m_packageRoot(root)
|
m_packageRoot(root)
|
||||||
|
|
Loading…
Add table
Reference in a new issue