diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-15 02:52:19 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-15 02:52:19 +0200 |
commit | 1e2c6593f5b42726e4402ca2f16ab41afc1480ff (patch) | |
tree | 85311a4419accf3449a69817bf7cd64d9b0a2a3e | |
parent | d9379a35aa70465ca2b65106c20e2b6ec9b2d50a (diff) | |
download | poezio-1e2c6593f5b42726e4402ca2f16ab41afc1480ff.tar.gz poezio-1e2c6593f5b42726e4402ca2f16ab41afc1480ff.tar.bz2 poezio-1e2c6593f5b42726e4402ca2f16ab41afc1480ff.tar.xz poezio-1e2c6593f5b42726e4402ca2f16ab41afc1480ff.zip |
plugins/embed: correctly refresh window in Conversation*Tab
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | plugins/embed.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/embed.py b/plugins/embed.py index 4226c420..0c4a4a2a 100644 --- a/plugins/embed.py +++ b/plugins/embed.py @@ -45,6 +45,4 @@ class Plugin(BasePlugin): typ=1, ) message.send() - # TODO: Fix refreshing. The following doesn't work. - tab.refresh() - self.core.tab_win.refresh() + self.core.refresh_window() |