diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-16 18:13:31 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-16 18:51:30 +0100 |
| commit | 1ad26362c92c7d5678c24df85fd7b9ab1d3d34fe (patch) | |
| tree | 7bc3446ccc10fe5c571b4b0bcbe148e715543c7d /src/ui_interface.h | |
| parent | Merge pull request #3425 (diff) | |
| download | discoin-1ad26362c92c7d5678c24df85fd7b9ab1d3d34fe.tar.xz discoin-1ad26362c92c7d5678c24df85fd7b9ab1d3d34fe.zip | |
qt: Prevent non-functional GUI from popping up during Init
When a InitError or InitWarning happens, the
GUI pops up but is unusable (until Init finishes).
This is caused by showNormalIfMinimized. Add a message
flag to skip this call for Init errors or warnings.
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 2378d5dfb..83341af96 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, |