diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-31 11:31:09 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-31 11:31:09 +0000 |
commit | c3597c425786d9f45aefe8a026b5a3d6ad25bc37 (patch) | |
tree | 1a3e369f68ecf8b503979953e5a651848bd4c96d /src/core.py | |
parent | b815cbf0550ac9df005f32c56652e95ea8b7d8ae (diff) | |
download | poezio-c3597c425786d9f45aefe8a026b5a3d6ad25bc37.tar.gz poezio-c3597c425786d9f45aefe8a026b5a3d6ad25bc37.tar.bz2 poezio-c3597c425786d9f45aefe8a026b5a3d6ad25bc37.tar.xz poezio-c3597c425786d9f45aefe8a026b5a3d6ad25bc37.zip |
use the theme color
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index ff7d2eb3..c8354e52 100644 --- a/src/core.py +++ b/src/core.py @@ -490,7 +490,7 @@ class Core(object): if not conversation: # We create the conversation with the bare Jid if nothing was found conversation = self.open_conversation_window(jid.bare, False) - conversation.get_room().add_message(body, None, jid.full, False, 5) + conversation.get_room().add_message(body, None, jid.full, False, theme.COLOR_REMOTE_USER) if self.current_tab() is not conversation: conversation.set_color_state(theme.COLOR_TAB_PRIVATE) self.refresh_window() |