mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 15:45:59 +01:00
box: fix noNegativeSize
This commit is contained in:
parent
37a84c5223
commit
38911d6df4
1 changed files with 2 additions and 2 deletions
|
@ -115,8 +115,8 @@ CBox& CBox::expand(const double& value) {
|
||||||
}
|
}
|
||||||
|
|
||||||
CBox& CBox::noNegativeSize() {
|
CBox& CBox::noNegativeSize() {
|
||||||
std::clamp(w, 0.0, std::numeric_limits<double>::infinity());
|
w = std::clamp(w, 0.0, std::numeric_limits<double>::infinity());
|
||||||
std::clamp(h, 0.0, std::numeric_limits<double>::infinity());
|
h = std::clamp(h, 0.0, std::numeric_limits<double>::infinity());
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue