tree/view: ensure content_{width,height} is positive

The size computations may result in a zero or negative size, which
are not valid wl_surface sizes.
This commit is contained in:
Simon Ser 2024-06-24 09:29:59 +02:00 committed by Alexander Orzechowski
parent 5f15c5e91d
commit fce8de0f67

View file

@ -365,8 +365,8 @@ void view_autoconfigure(struct sway_view *view) {
con->pending.content_x = x;
con->pending.content_y = y;
con->pending.content_width = width;
con->pending.content_height = height;
con->pending.content_width = fmax(width, 1);
con->pending.content_height = fmax(height, 1);
}
void view_set_activated(struct sway_view *view, bool activated) {