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-07-05 18:17:59 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-07-05 18:17:59 (GMT)
commitcc96a4b6064422ed8a02e5b41963821080ff999a (patch)
treea1671ef6137671f1c160be3625e6b09f48587732
parentd7be2ab4fdb6e176c598dba5b8030abd3f3ada56 (diff)
Explicitly set background colour of RoundBox for status messages - #1913
-rw-r--r--chat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.py b/chat.py
index d611c8d..1aeeb01 100644
--- a/chat.py
+++ b/chat.py
@@ -235,7 +235,7 @@ class Chat(Activity):
vbox.append(name)
if status_message:
- rb = RoundBox(padding=px(3))
+ rb = RoundBox(background_color=0x808080ff, padding=px(3))
else:
rb = RoundBox(background_color=0xffffffff, padding=px(3))
rb.append(text)