diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-27 22:49:52 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-10-27 22:49:52 +0000 |
commit | c091e0c16fb1dbcf5c2a3789c8960e5384a480c0 (patch) | |
tree | 1062ae42331f58a1a89cc20d7836910bfe0998d5 /src/gui.py | |
parent | d6e3788305a6e0c68156b00a1ae5c0f4aee9aff7 (diff) | |
download | poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.gz poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.bz2 poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.tar.xz poezio-c091e0c16fb1dbcf5c2a3789c8960e5384a480c0.zip |
Command mode in roster tab, toggle offline contacts with 'o' and sort contacts by show
Diffstat (limited to 'src/gui.py')
-rw-r--r-- | src/gui.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -171,8 +171,6 @@ class Gui(object): self.refresh_window() def on_got_offline(self, presence): - from common import debug - debug('OFFLINE: %s\n' % presence) jid = presence['from'] contact = self.roster.get_contact_by_jid(jid.bare) if not contact: @@ -185,8 +183,6 @@ class Gui(object): self.refresh_window() def on_got_online(self, presence): - from common import debug - debug('ONLINE: %s\n' % presence) jid = presence['from'] contact = self.roster.get_contact_by_jid(jid.bare) if not contact: @@ -537,7 +533,7 @@ class Gui(object): Resize the whole screen """ with resize_lock: - self.resize_timer = None + # self.resize_timer = None for tab in self.tabs: tab.resize(self.stdscr) self.refresh_window() |