diff options
author | mathieui <mathieui@mathieui.net> | 2012-10-14 15:42:55 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-10-14 15:42:55 +0200 |
commit | 21caf36ea48500ee34ab92a86c72f6204f79cc83 (patch) | |
tree | c580a48c2645579b0e82cdfec995f201fa2cffcc /src/tabs.py | |
parent | 25bb3501ec785f35a54d956af249a4586e6dc2cc (diff) | |
download | poezio-21caf36ea48500ee34ab92a86c72f6204f79cc83.tar.gz poezio-21caf36ea48500ee34ab92a86c72f6204f79cc83.tar.bz2 poezio-21caf36ea48500ee34ab92a86c72f6204f79cc83.tar.xz poezio-21caf36ea48500ee34ab92a86c72f6204f79cc83.zip |
Fix a refresh issue on space in the roster
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index 68a93667..b16f9448 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2573,6 +2573,8 @@ class RosterInfoTab(Tab): if isinstance(selected_row, RosterGroup) or\ isinstance(selected_row, Contact): selected_row.toggle_folded() + self.refresh() + self.core.doupdate() return True def get_contact_version(self): |