Skip to content
Snippets Groups Projects
Commit 37df1785 authored by nkour's avatar nkour
Browse files

fix logic bug in tabs_always_visible

parent 4443c7a3
No related branches found
No related tags found
No related merge requests found
......@@ -430,7 +430,8 @@ class Chat:
del self.tagStatus[jid]
if len(self.xmls) == 1: # we now have only one tab
self.notebook.set_show_tabs(self.notebook.get_show_tabs())
show_tabs_if_one_tab = gajim.config.get('tabs_always_visible')
self.notebook.set_show_tabs(show_tabs_if_one_tab)
self.show_title()
def bring_scroll_to_end(self, textview, diff_y = 0):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment