aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2024-06-24 09:29:31 +0200
committerAlexander Orzechowski <alex@ozal.ski>2024-06-25 09:32:46 -0400
commit5f15c5e91defe8afc6c0f5105b7a51625676a685 (patch)
tree40807703d42193934d7ae8b03e85a164af54f05f
parentcc342107690631cf1ff003fed0b1cdb072491c63 (diff)
tree/view: set default min size to 1×1
It's not possible to have a surface with a smaller size.
-rw-r--r--sway/tree/view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 1c1c8ee8..884beec8 100644
--- 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;
}
}