Slightly improve code readability

The compiler suggests us to add some parenthesis in order to improve
code readability.
master
Vlad Zahorodnii 2020-09-09 17:05:34 +03:00
parent bfb257c9ed
commit 8a788b71ca
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}