dwindle: avoid sending negative sizes to wlr

fixes #4591
This commit is contained in:
Vaxry
2024-02-02 15:04:04 +00:00
parent d7514412d8
commit 341e04a36c
3 changed files with 12 additions and 4 deletions

View File

@@ -105,6 +105,13 @@ CBox& CBox::expand(const double& value) {
return *this;
}
CBox& CBox::noNegativeSize() {
std::clamp(w, 0.0, std::numeric_limits<double>::infinity());
std::clamp(h, 0.0, std::numeric_limits<double>::infinity());
return *this;
}
CBox CBox::roundInternal() {
float newW = x + w - std::floor(x);
float newH = y + h - std::floor(y);