diff options
author | George Hazan <george.hazan@gmail.com> | 2024-05-01 14:42:45 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-05-01 14:42:45 +0300 |
commit | aa002aef2ec00f4d34d68a7ce50a86577b375c37 (patch) | |
tree | 1826e44fbf77b036d71e9c93ac6b1720aa92cb7d /plugins/NewStory | |
parent | 6a212e655a53000f7660f89579fbb282121e9149 (diff) |
fixes #4381 (NewStory: цвет выделения по умолчанию совпадает с цветом ссылок по умолчанию)
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/fonts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index c59acad7c2..77ae93a87d 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -35,7 +35,7 @@ MyColourID g_colorTable[COLOR_COUNT] = { LPGEN("Other outgoing events"), "ColorOut", RGB(0xff, 0xff, 0xff) },
{ LPGEN("Selected item's text"), "ColorSelTxt", RGB(0xff, 0xff, 0xff) },
- { LPGEN("Selected item's background"), "ColorSel", GetSysColor(COLOR_HIGHLIGHT) },
+ { LPGEN("Selected item's background"), "ColorSel", RGB(0xcd, 0xcd, 0xfc) },
{ LPGEN("Selected item's frame"), "ColorSelFrm", GetSysColor(COLOR_HIGHLIGHTTEXT) },
{ LPGEN("Highlighted messages"), "ColorHighlight", RGB(0xf0, 0xf0, 0xf0) },
|