diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-23 09:52:55 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-23 09:53:30 +0100 |
| commit | 362755d01817891defcbae696d34f0ff8266a1d0 (patch) | |
| tree | e8af54f2d8a7cbc93d33ca29ef56689a58113411 /src/ui_interface.h | |
| parent | Merge pull request #3451 (diff) | |
| parent | qt: Prevent non-functional GUI from popping up during Init (diff) | |
| download | discoin-362755d01817891defcbae696d34f0ff8266a1d0.tar.xz discoin-362755d01817891defcbae696d34f0ff8266a1d0.zip | |
Merge pull request #3427
1ad2636 qt: Prevent non-functional GUI from popping up during Init (Wladimir J. van der Laan)
Diffstat (limited to 'src/ui_interface.h')
| -rw-r--r-- | src/ui_interface.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index a14ed6781..677d097fa 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -62,6 +62,8 @@ public: /** Force blocking, modal message box dialog (not just OS notification) */ MODAL = 0x10000000U, + /** Don't bring GUI to foreground. Use for messages during initialization */ + NOSHOWGUI = 0x20000000U, /** Predefined combinations for certain default usage cases */ MSG_INFORMATION = ICON_INFORMATION, |