diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2021-01-29 16:42:00 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-01-29 21:41:38 +0100 |
commit | b79efdba4a801fa533c4ca85e3124d96c71d878c (patch) | |
tree | 0444b0e29d73f813e6e6b4dde076d14534b7f8c0 /kde-apps | |
parent | net-misc/curl: remove libressl, fix bugs #744934, #767886 (diff) | |
download | gentoo-b79efdba4a801fa533c4ca85e3124d96c71d878c.tar.gz gentoo-b79efdba4a801fa533c4ca85e3124d96c71d878c.tar.bz2 gentoo-b79efdba4a801fa533c4ca85e3124d96c71d878c.zip |
kde-apps/konsole: remove unused patch(es)
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19252
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch | 33 |
1 files changed, 0 insertions, 33 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 deleted file mode 100644 index 8e79793601e7..000000000000 --- a/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch +++ /dev/null @@ -1,33 +0,0 @@ -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 - |