summaryrefslogtreecommitdiff
path: root/plugins/NewEventNotify/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2023-01-16 20:22:25 +0300
committerGeorge Hazan <ghazan@miranda.im>2023-01-16 20:22:25 +0300
commit18f40bbda421a49fe5fc3ca8adbfa56783c55649 (patch)
tree8c41eee218d2b2dfb09c8a5faf1630ea03d719ac /plugins/NewEventNotify/src
parent621085cc9a294c7c69b3bfab4125d6b8ff094524 (diff)
fixes #3277 (NewEventNotify: добавить к настройке "Выключить для прочтённых" пометку, что её отключение конфликтует с антиспамом)
Diffstat (limited to 'plugins/NewEventNotify/src')
-rw-r--r--plugins/NewEventNotify/src/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewEventNotify/src/options.cpp b/plugins/NewEventNotify/src/options.cpp
index 5507a230f9..89e838c8d9 100644
--- a/plugins/NewEventNotify/src/options.cpp
+++ b/plugins/NewEventNotify/src/options.cpp
@@ -190,7 +190,7 @@ public:
pwszSection = TranslateT("Misc options");
m_opts.AddOption(pwszSection, TranslateT("No popups for RSS contacts"), g_plugin.bNoRSS);
- m_opts.AddOption(pwszSection, TranslateT("No popups for read messages"), g_plugin.bReadCheck);
+ m_opts.AddOption(pwszSection, TranslateT("No popups for read messages (conflicts with AntiSpam plugin)"), g_plugin.bReadCheck);
chkLimit.OnChange = Callback(this, &COptionsMainDlg::onChange_Limit);
}