diff options
author | toonn <toonn@toonn.io> | 2019-12-30 19:36:58 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2019-12-30 19:39:11 +0100 |
commit | 1a12bf54ef0ba6a28b7772c98fc3f78b00b1c9db (patch) | |
tree | 8640c71d9238ee9bece4284ffb6daea1297d2887 | |
parent | 9a05536d17bd142a9c15d2e752eb94c9c9c00a4d (diff) | |
download | ranger-1a12bf54ef0ba6a28b7772c98fc3f78b00b1c9db.tar.gz |
Fix white text on white background in titlebar
We were doubling up bold and BRIGHT for the name of the selected file in the titlebar. Fixes #1800
-rw-r--r-- | ranger/colorschemes/default.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ranger/colorschemes/default.py b/ranger/colorschemes/default.py index a9e01e0c..3d50e2e4 100644 --- a/ranger/colorschemes/default.py +++ b/ranger/colorschemes/default.py @@ -101,7 +101,6 @@ class Default(ColorScheme): elif context.link: fg = cyan attr |= bold - fg += BRIGHT elif context.in_statusbar: if context.permissions: |