Slightly improve code readability
The compiler suggests us to add some parenthesis in order to improve code readability.
This commit is contained in:
parent
bfb257c9ed
commit
8a788b71ca
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ static void rearrangeLayer(const QList<LayerShellV1Client *> &clients, QRect *wo
|
|||
if (shellSurface->layer() != layer) {
|
||||
continue;
|
||||
}
|
||||
if (exclusive != shellSurface->exclusiveZone() > 0) {
|
||||
if (exclusive != (shellSurface->exclusiveZone() > 0)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue