summaryrefslogtreecommitdiff
path: root/plugins/NewStory
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-08-18 14:53:25 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-08-18 14:53:25 +0300
commit864c3e4a00ab61c51753b6a8307ebe0e421fcae3 (patch)
tree22ccd1366962f651e372ffda1a3948e8fa2d700c /plugins/NewStory
parent0cc825103d88bc5b9033e2b4865c40b9e9d53383 (diff)
fixes #3644 (NewStory: истребить грязно-голубой цвет выделенного сообщения)
Diffstat (limited to 'plugins/NewStory')
-rw-r--r--plugins/NewStory/src/history_control.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp
index f0fa9b24c2..71762f1934 100644
--- a/plugins/NewStory/src/history_control.cpp
+++ b/plugins/NewStory/src/history_control.cpp
@@ -415,13 +415,11 @@ int NewstoryListData::PaintItem(HDC hdc, int index, int top, int width)
clText = g_fontTable[fontid].cl;
if (item->m_bSelected) {
- MTextSendMessage(0, item->data, EM_SETSEL, 0, -1);
clText = g_colorTable[COLOR_SELTEXT].cl;
clBack = g_colorTable[COLOR_SELBACK].cl;
clLine = g_colorTable[COLOR_SELFRAME].cl;
}
else {
- MTextSendMessage(0, item->data, EM_SETSEL, 0, 0);
clLine = g_colorTable[COLOR_FRAME].cl;
clBack = g_colorTable[colorid].cl;
}