From b1841f985780e5f7652dfc7d03dd15d77f662340 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 11 Oct 2025 18:23:40 +0200 Subject: [PATCH] Only warn when Frame allocation is smaller than requested size see also a8092c1782c484 --- libs/widgets/frame.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/widgets/frame.cc b/libs/widgets/frame.cc index fa840ab796..edc0b4a5d3 100644 --- a/libs/widgets/frame.cc +++ b/libs/widgets/frame.cc @@ -147,7 +147,6 @@ Frame::on_size_allocate (Allocation& alloc) if (alloc.get_width () < _min_size.width || alloc.get_height () < _min_size.height) { #ifndef NDEBUG printf ("Frame::on_size_allocate %dx%d < %dx%d\n", alloc.get_width (), alloc.get_height (), _min_size.width, _min_size.height); - return; #endif }