Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
2d58ed02
Commit
2d58ed02
authored
Dec 18, 2020
by
Carlos Alves
Browse files
Revert 'Fix bold character color paint'
This reverts commit
270d6ea3
Need aditional tests.
parent
6667d96e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Screen.cpp
View file @
2d58ed02
...
...
@@ -458,8 +458,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
();
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment