diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-05 12:05:53 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-05 12:05:53 +0300 |
commit | f7b207ada21b9aa2cc984afbcae3c8f36150f999 (patch) | |
tree | 7bd837efd65b3ca5fe8615c1e2de2959847454eb /plugins/NewStory/src/fonts.cpp | |
parent | 709dc2c6521ebced9cba68e0403342d81fa629dc (diff) |
fixes #2389 (NewStory: невозможно настроить цвет выделенных элементов)
Diffstat (limited to 'plugins/NewStory/src/fonts.cpp')
-rw-r--r-- | plugins/NewStory/src/fonts.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index b7c4a4af55..122a6de30b 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -13,10 +13,12 @@ MyColourID g_colorTable[COLOR_COUNT] = { LPGEN("Other incoming events"), "ColorIn", RGB(0xff, 0xff, 0xff) }, { LPGEN("Other outgoing events"), "ColorOut", RGB(0xff, 0xff, 0xff) }, - { LPGEN("Selected items"), "ColorSel", RGB(0x60, 0x60, 0x60) }, - { LPGEN("Selected items (text)"), "ColorSelTxt", RGB(0xff, 0xff, 0xff) }, + { LPGEN("Selected item's text"), "ColorSelTxt", RGB(0xff, 0xff, 0xff) }, + { LPGEN("Selected item's back"), "ColorSel", GetSysColor(COLOR_HIGHLIGHT) }, + { LPGEN("Selected item's frame"), "ColorSelFrm", GetSysColor(COLOR_HIGHLIGHTTEXT) }, { LPGEN("Background"), "Background", RGB(0xff, 0xff, 0xff) }, + { LPGEN("Separator"), "Separator", RGB(0x60, 0x60, 0x60) }, }; MyFontID g_fontTable[FONT_COUNT] = |