diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-25 15:47:41 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-25 15:47:41 +0300 |
commit | 2399415bb543d77fae4028b6d2d9d9eecc4ea9b0 (patch) | |
tree | 82e59d7bc3460af3ffcd16880b34fb0d3413faeb /protocols/YAMN/src/proto | |
parent | 518515b5ceb6420e9f447573c9b0d918e589f599 (diff) |
fixes #3750 (YAMN: опция принудительного показа вспл. окон не всегда работает)
Diffstat (limited to 'protocols/YAMN/src/proto')
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3comm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3comm.cpp b/protocols/YAMN/src/proto/pop3/pop3comm.cpp index 213ecb86c2..f1c3918c2e 100644 --- a/protocols/YAMN/src/proto/pop3/pop3comm.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3comm.cpp @@ -628,7 +628,7 @@ void MIR_CDECL SynchroPOP3(CheckParam *WhichTemp) YAMN_MAILBROWSERPARAM Param = { ActualAccount, NFlags, NNFlags, 0 };
if (bForceCheck)
- Param.nnflags |= YAMN_ACC_POP; // if force check, show popup anyway and if mailbrowser was opened, do not close
+ Param.nnflags |= YAMN_ACC_FORCEPOP; // if force check, show popup anyway and if mailbrowser was opened, do not close
Param.nnflags |= YAMN_ACC_MSGP; // do not close browser if already open
RunMailBrowser(&Param);
|