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 fcffbbc commit db77c71Copy full SHA for db77c71
src/wayland/wlr_layershell/wlr_layershell.cpp
@@ -26,8 +26,8 @@ WlrLayershell::WlrLayershell(QObject* parent): ProxyWindowBase(parent) {
26
switch (this->bcExclusionEdge.value()) {
27
case Qt::TopEdge: return this->bImplicitHeight + margins.bottom;
28
case Qt::BottomEdge: return this->bImplicitHeight + margins.top;
29
- case Qt::LeftEdge: return this->bImplicitHeight + margins.right;
30
- case Qt::RightEdge: return this->bImplicitHeight + margins.left;
+ case Qt::LeftEdge: return this->bImplicitWidth + margins.right;
+ case Qt::RightEdge: return this->bImplicitWidth + margins.left;
31
default: return 0;
32
}
33
0 commit comments