diff options
author | mathieui <mathieui@mathieui.net> | 2012-05-17 16:55:31 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-05-17 16:55:31 +0200 |
commit | 0f8a5abdc0818b4071bf4623a12ee95223b11ba3 (patch) | |
tree | 08f669625214f37f02103958f63faaa5492b0944 /src | |
parent | 64defba0ae18812196caadab26cdea0d24849be5 (diff) | |
download | poezio-0f8a5abdc0818b4071bf4623a12ee95223b11ba3.tar.gz poezio-0f8a5abdc0818b4071bf4623a12ee95223b11ba3.tar.bz2 poezio-0f8a5abdc0818b4071bf4623a12ee95223b11ba3.tar.xz poezio-0f8a5abdc0818b4071bf4623a12ee95223b11ba3.zip |
Add an option to always show the separator - Fixes #2240
Diffstat (limited to 'src')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index be2a886d..92b913b0 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1156,7 +1156,7 @@ class MucTab(ChatTab): def on_gain_focus(self): self.state = 'current' - if self.text_win.built_lines and self.text_win.built_lines[-1] is None: + if self.text_win.built_lines and self.text_win.built_lines[-1] is None and config.getl('show_useless_separator', 'false') != 'true': self.text_win.remove_line_separator() curses.curs_set(1) if self.joined and config.get_by_tabname('send_chat_states', 'true', self.general_jid, True) == 'true' and not self.input.get_text(): |