Only warn when Frame allocation is smaller than requested size

see also a8092c1782
This commit is contained in:
Robin Gareus 2025-10-11 18:23:40 +02:00
parent b467951c9d
commit b1841f9857
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -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
}