X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=gui%2Fstyle.cpp;h=54889868dfbf79936cd8ace762402fcfea215812;hb=6fc26e28a07a2b6bbc60ee786514a802e628d6d3;hp=9b845d3f5ae2d3e78480a16cd7b203bb55d138d4;hpb=2c9184c37fc54adb7670ea261a8e34c99a82a285;p=quassel.git 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;