diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-15 22:57:44 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-15 22:57:44 +0200 |
commit | a784216196df764e2bb790efe7a799e9cad5588b (patch) | |
tree | 8c5f1a4c013b92cc1f21ad1341055c3eecc1a759 /src/theming.py | |
parent | 80ebe9edc041f7950c8858cd6176830c62b11ada (diff) | |
download | poezio-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/theming.py')
-rw-r--r-- | src/theming.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/theming.py b/src/theming.py index 8576a2a0..10844956 100644 --- a/src/theming.py +++ b/src/theming.py @@ -205,6 +205,7 @@ class Theme(object): COLOR_TAB_SCROLLED = (5, 4) COLOR_TAB_JOINED = (82, 4) COLOR_TAB_CURRENT = (7, 6) + COLOR_TAB_COMPOSING = (7, 5) COLOR_TAB_NEW_MESSAGE = (7, 5) COLOR_TAB_HIGHLIGHT = (7, 3) COLOR_TAB_PRIVATE = (7, 2) @@ -217,6 +218,7 @@ class Theme(object): COLOR_VERTICAL_TAB_SCROLLED = (66, -1) COLOR_VERTICAL_TAB_CURRENT = (7, 4) COLOR_VERTICAL_TAB_NEW_MESSAGE = (5, -1) + COLOR_VERTICAL_TAB_COMPOSING = (5, -1) COLOR_VERTICAL_TAB_HIGHLIGHT = (3, -1) COLOR_VERTICAL_TAB_PRIVATE = (2, -1) COLOR_VERTICAL_TAB_ATTENTION = (1, -1) |