Remove 18 month old debug messages

This commit is contained in:
Robin Gareus 2022-02-01 22:01:41 +01:00
parent 031a05b07a
commit 200469dce8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 0 additions and 3 deletions

View File

@ -37,13 +37,10 @@ void
Root::size_request (Distance& w, Distance& h) const
{
if (_items.size() == 1) {
cerr << "Call prefsize on " << _items.front()->whoami() << endl;
_items.front()->size_request (w, h);
return;
}
cerr << "use regular prefsize for root\n";
Item::size_request (w, h);
}