summaryrefslogtreecommitdiff
path: root/mentio.py
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2014-08-07 01:18:11 +0200
committerjomo <github@jomo.tv>2014-08-07 01:18:11 +0200
commit82e912d77eb6c13b12d9e3cd9d2967280d5d0a00 (patch)
tree027a596928853fc8602b180b7656b7dc2b0a5b19 /mentio.py
parent9404f91e913d16ec7473af05b0042c148218ea52 (diff)
change highlight style. (underline hides parts of the next line)
Diffstat (limited to 'mentio.py')
-rw-r--r--mentio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mentio.py b/mentio.py
index df876d5..9bafdc3 100644
--- a/mentio.py
+++ b/mentio.py
@@ -41,7 +41,7 @@ def onChat(event):
# join all color codes used upto this word
colors = "".join(colors_reg.findall("".join(words[:index+1])))
# highlight the word containing mention, then apply all previous color codes
- rec_words[index] = colorify("&r&a&n") + stripcolors(word) + colorify("&r") + colors
+ rec_words[index] = colorify("&r&a&o") + stripcolors(word) + colorify("&r") + colors
# No need to
break