diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-14 00:33:29 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-14 00:33:29 +0100 |
commit | 560390793d29728ea96e1a547424a28098dcb610 (patch) | |
tree | e73b2d04717f6f2f1efd04b48515a3cedcd17966 /src/theming.py | |
parent | af110581290d28b86f991dc48ced55c085852225 (diff) | |
download | poezio-560390793d29728ea96e1a547424a28098dcb610.tar.gz poezio-560390793d29728ea96e1a547424a28098dcb610.tar.bz2 poezio-560390793d29728ea96e1a547424a28098dcb610.tar.xz poezio-560390793d29728ea96e1a547424a28098dcb610.zip |
Add 'joined' tab state, and rewrite the function handling the priorities
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 fba33366..c29d044d 100644 --- a/src/theming.py +++ b/src/theming.py @@ -122,6 +122,7 @@ class Theme(object): # Tabs COLOR_TAB_NORMAL = (7, 4) + COLOR_TAB_JOINED = (82, 4) COLOR_TAB_CURRENT = (7, 6) COLOR_TAB_NEW_MESSAGE = (7, 5) COLOR_TAB_HIGHLIGHT = (7, 3) @@ -130,6 +131,7 @@ class Theme(object): COLOR_TAB_DISCONNECTED = (7, 8) COLOR_VERTICAL_TAB_NORMAL = (4, -1) + COLOR_VERTICAL_TAB_JOINED = (82, -1) COLOR_VERTICAL_TAB_CURRENT = (7, 4) COLOR_VERTICAL_TAB_NEW_MESSAGE = (5, -1) COLOR_VERTICAL_TAB_HIGHLIGHT = (3, -1) |