Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2007-10-23 16:08:05 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-10-23 16:08:05 (GMT)
commit95f2109ad761e0d8b04808dd4c081f98da6e51d1 (patch)
tree10216d6c831b934177777f7215390e38cc231b38
parent2cf36c61ec076b1211b41c8c1b607a418b2e6a05 (diff)
#4331: don't display white text on white background when no buddy colour available
-rw-r--r--chat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.py b/chat.py
index 91e7e27..0c8e752 100644
--- a/chat.py
+++ b/chat.py
@@ -199,7 +199,7 @@ class Chat(Activity):
try:
color_stroke, color_fill = color.split(',')
except ValueError:
- color_stroke, color_fill = ('#000000', '#FFFFFF')
+ color_stroke, color_fill = ('#000000', '#888888')
color_stroke = Color(color_stroke).get_int()
color_fill = Color(color_fill).get_int()
text_color = COLOR_WHITE.get_int()