From a784216196df764e2bb790efe7a799e9cad5588b Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 15 Apr 2014 22:57:44 +0200 Subject: Fix #2440 (highlight composing tabs) - add a show_composing_tabs option, default value: "direct" - todo: find a nice different color for this --- src/core/core.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/core/core.py') diff --git a/src/core/core.py b/src/core/core.py index b41bb1a4..00d7b9a6 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -1228,6 +1228,13 @@ class Core(object): Refresh the window containing the tab list """ self.current_tab().refresh_tab_win() + self.refresh_input() + self.doupdate() + + def refresh_input(self): + """ + Refresh the input if it exists + """ if self.current_tab().input: self.current_tab().input.refresh() self.doupdate() -- cgit v1.2.3