diff options
author | louiz’ <louiz@louiz.org> | 2016-05-17 15:48:10 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-05-17 15:48:53 +0200 |
commit | 38399f2cae9ffad42c4f2756802bbceaa60d0e92 (patch) | |
tree | 930f99fbd086bc3cd0c7e5e4caf9cafd28f08916 /src/tabs | |
parent | 65a37c44dde010ade7440ee2a80bcea4ad71114a (diff) | |
download | poezio-38399f2cae9ffad42c4f2756802bbceaa60d0e92.tar.gz poezio-38399f2cae9ffad42c4f2756802bbceaa60d0e92.tar.bz2 poezio-38399f2cae9ffad42c4f2756802bbceaa60d0e92.tar.xz poezio-38399f2cae9ffad42c4f2756802bbceaa60d0e92.zip |
Lower the priority of the “joined” tab to be lower than the “message” ones
fix #3192
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/basetabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/basetabs.py b/src/tabs/basetabs.py index 618a3064..ca8dafae 100644 --- a/src/tabs/basetabs.py +++ b/src/tabs/basetabs.py @@ -72,9 +72,9 @@ STATE_PRIORITY = { 'disconnected': 0, 'nonempty': 0.1, 'scrolled': 0.5, + 'joined': 0.8, 'composing': 0.9, 'message': 1, - 'joined': 1, 'highlight': 2, 'private': 2, 'attention': 3 |