diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-02 21:33:17 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-02 21:33:17 +0200 |
commit | 52e6334c8c95ec873ccbcf17bf42de12eec0475d (patch) | |
tree | d83bccb0ccd319821670f4b00642ee47d995e8fe /src/theming.py | |
parent | 65c247399d4b5d8d78953e72cab89b7cf6b890fa (diff) | |
download | poezio-52e6334c8c95ec873ccbcf17bf42de12eec0475d.tar.gz poezio-52e6334c8c95ec873ccbcf17bf42de12eec0475d.tar.bz2 poezio-52e6334c8c95ec873ccbcf17bf42de12eec0475d.tar.xz poezio-52e6334c8c95ec873ccbcf17bf42de12eec0475d.zip |
Fix #2340 (change tab priority when the input is not empty)
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 0e271018..af8c7d36 100644 --- a/src/theming.py +++ b/src/theming.py @@ -201,6 +201,7 @@ class Theme(object): # Tabs COLOR_TAB_NORMAL = (7, 4) + COLOR_TAB_NONEMPTY = (7, 4) COLOR_TAB_SCROLLED = (5, 4) COLOR_TAB_JOINED = (82, 4) COLOR_TAB_CURRENT = (7, 6) @@ -211,6 +212,7 @@ class Theme(object): COLOR_TAB_DISCONNECTED = (7, 8) COLOR_VERTICAL_TAB_NORMAL = (4, -1) + COLOR_VERTICAL_TAB_NONEMPTY = (4, -1) COLOR_VERTICAL_TAB_JOINED = (82, -1) COLOR_VERTICAL_TAB_SCROLLED = (66, -1) COLOR_VERTICAL_TAB_CURRENT = (7, 4) |