summaryrefslogtreecommitdiff
path: root/src/core/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-04-15 22:57:44 +0200
committermathieui <mathieui@mathieui.net>2014-04-15 22:57:44 +0200
commita784216196df764e2bb790efe7a799e9cad5588b (patch)
tree8c5f1a4c013b92cc1f21ad1341055c3eecc1a759 /src/core/core.py
parent80ebe9edc041f7950c8858cd6176830c62b11ada (diff)
downloadpoezio-a784216196df764e2bb790efe7a799e9cad5588b.tar.gz
poezio-a784216196df764e2bb790efe7a799e9cad5588b.tar.bz2
poezio-a784216196df764e2bb790efe7a799e9cad5588b.tar.xz
poezio-a784216196df764e2bb790efe7a799e9cad5588b.zip
Fix #2440 (highlight composing tabs)
- add a show_composing_tabs option, default value: "direct" - todo: find a nice different color for this
Diffstat (limited to 'src/core/core.py')
-rw-r--r--src/core/core.py7
1 files changed, 7 insertions, 0 deletions
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()