diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index eab885c7..770de71c 100644 --- a/src/core.py +++ b/src/core.py @@ -141,7 +141,7 @@ class Core(object): 'M-r': self.go_to_roster, 'M-z': self.go_to_previous_tab, 'M-v': self.move_separator, - '^L': self.call_for_resize, + '^L': self.full_screen_redraw, } # Add handlers @@ -504,6 +504,7 @@ class Core(object): A subscription changed, or we received a roster item after a roster request, etc """ + print(sdfsdf) for item in iq.findall('{jabber:iq:roster}query/{jabber:iq:roster}item'): jid = item.attrib['jid'] contact = roster.get_contact_by_jid(jid) @@ -525,6 +526,13 @@ class Core(object): if isinstance(self.current_tab(), tabs.RosterInfoTab): self.refresh_window() + def full_screen_redraw(self): + """ + Completely erase and redraw the screen + """ + self.stdscr.clear() + self.call_for_resize() + def call_for_resize(self): """ Starts a very short timer. If no other terminal resize |