Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Konsole
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
22
Merge Requests
22
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Utilities
Konsole
Commits
08aa65e3
Commit
08aa65e3
authored
Dec 18, 2020
by
Carlos Alves
Committed by
Antonio Russo
Dec 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert 'Fix bold character color paint'
This reverts commit
270d6ea3
Need aditional tests.
parent
092e161a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/Screen.cpp
src/Screen.cpp
+7
-1
No files found.
src/Screen.cpp
View file @
08aa65e3
...
...
@@ -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
();
}
}
}
...
...
Write
Preview
Markdown
is supported
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