We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23cd6cd commit 22c397bCopy full SHA for 22c397b
src/x11/panel_window.cpp
@@ -232,6 +232,9 @@ void XPanelWindow::updateDimensions() {
232
// we only care about windows below us
233
if (panel == this) break;
234
235
+ // we only care about windows in the same layer
236
+ if (panel->mAboveWindows != this->mAboveWindows) continue;
237
+
238
int side = -1;
239
quint32 exclusiveZone = 0;
240
panel->getExclusion(side, exclusiveZone);
0 commit comments