Skip to content
GitLab
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
81195810
Commit
81195810
authored
Feb 05, 2022
by
Matan Ziv-Av
Committed by
Tomaz Canabrava
Feb 07, 2022
Browse files
Remove images on when clearing entire screen
parent
085814e2
Pipeline
#134350
passed with stage
in 2 minutes and 31 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/Screen.cpp
View file @
81195810
...
...
@@ -1276,6 +1276,10 @@ void Screen::clearToBeginOfScreen()
void
Screen
::
clearEntireScreen
()
{
clearImage
(
loc
(
0
,
0
),
loc
(
_columns
-
1
,
_lines
-
1
),
' '
);
if
(
_currentTerminalDisplay
&&
_currentTerminalDisplay
->
hasGraphics
())
{
_currentTerminalDisplay
->
delPlacements
();
_currentTerminalDisplay
->
update
();
}
}
/*! fill screen with 'E'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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