sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5f15c5e91defe8afc6c0f5105b7a51625676a685
parent cc342107690631cf1ff003fed0b1cdb072491c63
Author: Simon Ser <contact@emersion.fr>
Date:   Mon, 24 Jun 2024 09:29:31 +0200

tree/view: set default min size to 1×1

It's not possible to have a surface with a smaller size.

Diffstat:
Msway/tree/view.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -173,9 +173,9 @@ void view_get_constraints(struct sway_view *view, double *min_width, view->impl->get_constraints(view, min_width, max_width, min_height, max_height); } else { - *min_width = DBL_MIN; + *min_width = 1; *max_width = DBL_MAX; - *min_height = DBL_MIN; + *min_height = 1; *max_height = DBL_MAX; } }