The old behavior before D28224 was (X + Y) instead of (X + X)
This commit is contained in:
parent
e459c8bf54
commit
e1b5fc9fac
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ ScreenEdges::ScreenEdges(QObject *parent)
|
|||
, m_actionLeft(ElectricActionNone)
|
||||
, m_gestureRecognizer(new GestureRecognizer(this))
|
||||
{
|
||||
m_cornerOffset = (Screens::self()->physicalDpiX(0) + Screens::self()->physicalDpiX(0) + 5) / 6;
|
||||
m_cornerOffset = (Screens::self()->physicalDpiX(0) + Screens::self()->physicalDpiY(0) + 5) / 6;
|
||||
|
||||
connect(workspace(), &Workspace::clientRemoved, this, &ScreenEdges::deleteEdgeForClient);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue