diff options
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index 87f27e17..5fcdf8a3 100644 --- a/src/core.py +++ b/src/core.py @@ -971,6 +971,8 @@ class Core(object): return tab new_tab = tabs.ConversationTab(jid) # insert it in the rooms + if not focus: + new_tab.state = "private" self.add_tab(new_tab, focus) self.refresh_window() return new_tab @@ -989,6 +991,8 @@ class Core(object): own_nick = room.own_nick r = Room(complete_jid, own_nick) # PrivateRoom here new_tab = tabs.PrivateTab(r) + if not focus: + new_tab.state = "private" # insert it in the tabs self.add_tab(new_tab, focus) # self.window.new_room(r) |