summaryrefslogtreecommitdiff
path: root/kde-apps/konsole/files/konsole-20.12.0-revert-bold-breakage.patch
blob: 8e79793601e7ea5455bf2b5228e6c489c1a048c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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