diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-04-30 20:55:12 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-06-19 19:22:34 +0300 |
commit | 96fd4ee02f6c3be21cade729b95a85c60634b0f8 (patch) | |
tree | 25cc4654e027e8e78671f7a523384c6405c4604d /src/ui_interface.h | |
parent | f0641f274ffe94fbe7cae43c07a9373013739df2 (diff) |
Add MSG_NOPREFIX flag for user messages
It forces do not prepend error/warning prefix.
Diffstat (limited to 'src/ui_interface.h')
-rw-r--r-- | src/ui_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index d408f6f889..5e0380dc45 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -69,6 +69,9 @@ public: /** Force blocking, modal message box dialog (not just OS notification) */ MODAL = 0x10000000U, + /** Do not prepend error/warning prefix */ + MSG_NOPREFIX = 0x20000000U, + /** Do not print contents of message to debug log */ SECURE = 0x40000000U, |