It is not possible to change the font color, or actually it doesn't have any effect. It is possible to change it in the font-choosing window but the font stays black.
Just after line ( 293 ) of TailView.cpp add the following code:
stFormat.dwEffects &= ~CFE_AUTOCOLOR;
So it will now look like this:
stFormat.dwMask |= CFM_UNDERLINE | CFM_BOLD | CFM_ITALIC | CFM_FACE | CFM_COLOR;
stFormat.crTextColor = cr;
Log in to post a comment.
Just after line ( 293 ) of TailView.cpp add the following code:
stFormat.dwEffects &= ~CFE_AUTOCOLOR;
So it will now look like this:
stFormat.dwMask |= CFM_UNDERLINE | CFM_BOLD | CFM_ITALIC | CFM_FACE | CFM_COLOR;
stFormat.dwEffects &= ~CFE_AUTOCOLOR;
stFormat.crTextColor = cr;