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
0952e29f
Commit
0952e29f
authored
Mar 03, 2022
by
Luis Javier Merino
Committed by
Tomaz Canabrava
Mar 04, 2022
Browse files
Fix misplaced parenthesis
This was causing "notcurses-demo v" (view) to run really slow.
parent
f717cd5f
Pipeline
#145083
passed with stage
in 2 minutes and 2 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/Screen.cpp
View file @
0952e29f
...
...
@@ -2020,7 +2020,7 @@ void Screen::delPlacements(int del, qint64 id, qint64 pid, int x, int y, int z)
}
break
;
case
'i'
:
if
((
id
<
0
||
placement
->
id
)
==
id
&&
(
pid
<
0
||
placement
->
pid
==
pid
))
{
if
((
id
<
0
||
placement
->
id
==
id
)
&&
(
pid
<
0
||
placement
->
pid
==
pid
))
{
remove
=
true
;
}
break
;
...
...
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