mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 21:06:01 +01: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:
parent
4778afe2e6
commit
0b924f541c
1 changed files with 9 additions and 2 deletions
|
@ -167,6 +167,13 @@ SP<CWLSurface> CPointerConstraint::owner() {
|
|||
CRegion CPointerConstraint::logicConstraintRegion() {
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue