summaryrefslogtreecommitdiff
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
commit2dff50201a561623ca909998ee51ac10c24989d6 (patch)
tree027a596928853fc8602b180b7656b7dc2b0a5b19
parent2d5d6aace0484ae6c840b40b3afa68302a046c4b (diff)
change highlight style. (underline hides parts of the next line)
-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