diff options
author | Jason A. Donenfeld <zx2c4@gentoo.org> | 2020-12-17 18:15:54 +0100 |
---|---|---|
committer | Jason A. Donenfeld <zx2c4@gentoo.org> | 2020-12-17 23:00:26 +0100 |
commit | 23227fd8a2cfd663d0e5d9aa4f107e64a47941ad (patch) | |
tree | 7710618e9723c3d4c9763ccfc171ca29a66c6f9e /kde-apps/konsole/files | |
parent | net-analyzer/netdata: Cleanup old versions (diff) | |
download | gentoo-23227fd8a2cfd663d0e5d9aa4f107e64a47941ad.tar.gz gentoo-23227fd8a2cfd663d0e5d9aa4f107e64a47941ad.tar.bz2 gentoo-23227fd8a2cfd663d0e5d9aa4f107e64a47941ad.zip |
kde-apps/konsole: revbump to fix bold breakage
Upstream has a regression in the handling of bold/bright colors in
Konsole, detailed here:
https://bugs.kde.org/show_bug.cgi?id=430311
https://invent.kde.org/utilities/konsole/-/merge_requests/299
Before 20.12 colors looked like this:
https://invent.kde.org/utilities/konsole/uploads/3d18886419733f6e0c6bec0041aef5f8/image.png
With 20.12 colors look like this:
https://invent.kde.org/utilities/konsole/uploads/e5eaa8503d9888befdc3213ca5bc6aab/image.png
This follows the bug's suggestion of reverting a particular commit until
upstream has a proper fix.
Acked-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Jason A. Donenfeld <zx2c4@gentoo.org>
Diffstat (limited to 'kde-apps/konsole/files')
-rw-r--r-- | kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch b/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch new file mode 100644 index 000000000000..8e79793601e7 --- /dev/null +++ b/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch @@ -0,0 +1,33 @@ +From 08a51bbdd70c0c850f44a660a7efbe4c394b8ee3 Mon Sep 17 00:00:00 2001 +From: "Jason A. Donenfeld" <Jason@zx2c4.com> +Date: Thu, 17 Dec 2020 17:21:44 +0100 +Subject: [PATCH] Revert "Fix bold character color paint" + +This reverts commit 270d6ea3247bb41a51535129e4b1c8eef51cf316. +--- + src/Screen.cpp | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/src/Screen.cpp b/src/Screen.cpp +index 8e7eee51..c8f477ce 100644 +--- a/src/Screen.cpp ++++ b/src/Screen.cpp +@@ -474,8 +474,14 @@ void Screen::updateEffectiveRendition() + _effectiveBackground = _currentBackground; + } + +- if ((_currentRendition & RE_BOLD) == 0 && (_currentRendition & RE_FAINT) != 0) { ++ if ((_currentRendition & RE_BOLD) != 0) { ++ if ((_currentRendition & RE_FAINT) == 0) { ++ _effectiveForeground.setIntensive(); ++ } ++ } else { ++ if ((_currentRendition & RE_FAINT) != 0) { + _effectiveForeground.setFaint(); ++ } + } + } + +-- +2.29.2 + |