mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-04 14:11:59 -07:00
constraints: Lock surface region when region is empty (#6627)
* Pointer constraints: Lock surface region when region is empty * Format code
This commit is contained in:
@@ -165,8 +165,15 @@ SP<CWLSurface> CPointerConstraint::owner() {
|
||||
}
|
||||
|
||||
CRegion CPointerConstraint::logicConstraintRegion() {
|
||||
CRegion rg = region;
|
||||
const auto SURFBOX = pHLSurface->getSurfaceBoxGlobal();
|
||||
CRegion rg = region;
|
||||
const auto SURFBOX = pHLSurface->getSurfaceBoxGlobal();
|
||||
|
||||
// if region wasn't set in pointer-constraints request take surface region
|
||||
if (rg.empty() && SURFBOX.has_value()) {
|
||||
rg.set(SURFBOX.value());
|
||||
return rg;
|
||||
}
|
||||
|
||||
const auto CONSTRAINTPOS = SURFBOX.has_value() ? SURFBOX->pos() : Vector2D{};
|
||||
rg.translate(CONSTRAINTPOS);
|
||||
return rg;
|
||||
|
Reference in New Issue
Block a user