diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-11 03:39:39 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-11 03:39:39 +0000 |
commit | 58a82f170b01994be304283b2b195ea010b561e6 (patch) | |
tree | 97b3e00431ab1617c24607023f5f7634f2c7e44c /src/core.py | |
parent | f729e79aade7a1c1e2978dcf3822647351d58204 (diff) | |
download | poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.gz poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.bz2 poezio-58a82f170b01994be304283b2b195ea010b561e6.tar.xz poezio-58a82f170b01994be304283b2b195ea010b561e6.zip |
fix some issues with recent-words completion, make the ConversationTabs closable with /unquery and ignore the keyboard shortcuts not handled. fixed #1941
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index 01770a49..6a23a3a6 100644 --- a/src/core.py +++ b/src/core.py @@ -1207,6 +1207,9 @@ class Core(object): if isinstance(tab, PrivateTab): self.tabs.remove(tab) self.refresh_window() + if isinstance(tab, ConversationTab): + self.tabs.remove(tab) + self.refresh_window() def command_query(self, arg): """ |