diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-30 15:10:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-30 15:10:57 +0300 |
commit | 1d0b695325e4a1d11c9986403766041e1be2ef4f (patch) | |
tree | 7a8b527e626c0476f1f31bbe2c3ec52daceaec98 /plugins/TabSRMM/src/generic_msghandlers.cpp | |
parent | 7ed053c528020b73fe9f620a530a7c68f2d56433 (diff) |
fixes #1010 (custom colors do not appear in the IRC log)
Diffstat (limited to 'plugins/TabSRMM/src/generic_msghandlers.cpp')
-rw-r--r-- | plugins/TabSRMM/src/generic_msghandlers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/generic_msghandlers.cpp b/plugins/TabSRMM/src/generic_msghandlers.cpp index 6f6ca314bb..45fc240a4a 100644 --- a/plugins/TabSRMM/src/generic_msghandlers.cpp +++ b/plugins/TabSRMM/src/generic_msghandlers.cpp @@ -557,8 +557,8 @@ void CTabBaseDlg::DM_InitRichEdit() LOGFONTA lf = m_pContainer->theme.logFonts[MSGFONTID_MESSAGEAREA]; inputcharcolor = m_pContainer->theme.fontColors[MSGFONTID_MESSAGEAREA]; - for (int i = 0; i < Utils::rtf_ctable_size; i++) - if (Utils::rtf_ctable[i].clr == inputcharcolor) + for (int i = 0; i < Utils::rtf_clrs.getCount(); i++) + if (Utils::rtf_clrs[i].clr == inputcharcolor) inputcharcolor = RGB(GetRValue(inputcharcolor), GetGValue(inputcharcolor), GetBValue(inputcharcolor) == 0 ? GetBValue(inputcharcolor) + 1 : GetBValue(inputcharcolor) - 1); cf2.dwMask = CFM_COLOR | CFM_FACE | CFM_CHARSET | CFM_SIZE | CFM_WEIGHT | CFM_BOLD | CFM_ITALIC; |