X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=gui%2Fstyle.cpp;fp=gui%2Fstyle.cpp;h=54889868dfbf79936cd8ace762402fcfea215812;hp=9b845d3f5ae2d3e78480a16cd7b203bb55d138d4;hb=a72defa2957b67d05fb4fb3d18b1fb6755a5908c;hpb=c254c7bec76e5014a52664b3535f3b1d6f036a40 diff --git a/gui/style.cpp b/gui/style.cpp index 9b845d3f..54889868 100644 --- a/gui/style.cpp +++ b/gui/style.cpp @@ -116,6 +116,11 @@ void Style::init() { QTextCharFormat mode; mode.setForeground(QBrush("steelblue")); formats["%Dm"] = mode; + // %Da - ctcp action + QTextCharFormat action; + action.setFontItalic(true); + action.setForeground(QBrush("darkmagenta")); + formats["%Da"] = action; // %DT - timestamp QTextCharFormat ts;