summaryrefslogtreecommitdiff
path: root/src/room.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-09-12 10:56:02 +0200
committermathieui <mathieui@mathieui.net>2011-09-12 10:56:02 +0200
commit7a312992921debb1d904a0f2b7083272113e253e (patch)
tree2b06d711f99575b6d533bb1c6551f6057d3e7717 /src/room.py
parentd24b3c42958f50c3979b37ab7666379d78b3fad1 (diff)
downloadpoezio-7a312992921debb1d904a0f2b7083272113e253e.tar.gz
poezio-7a312992921debb1d904a0f2b7083272113e253e.tar.bz2
poezio-7a312992921debb1d904a0f2b7083272113e253e.tar.xz
poezio-7a312992921debb1d904a0f2b7083272113e253e.zip
Add a color state for disconnected rooms (Fixes #2166)
Diffstat (limited to 'src/room.py')
-rw-r--r--src/room.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/room.py b/src/room.py
index be376b54..58b96adb 100644
--- a/src/room.py
+++ b/src/room.py
@@ -35,6 +35,7 @@ class Room(TextBuffer):
we can know if we can join it, send messages to it, etc
"""
self.users = []
+ self.color_state = theme.COLOR_TAB_DISCONNECTED
self.joined = False
def get_single_line_topic(self):