1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

WindowServer: Remove debug spam in MenuManager::refresh()

This commit is contained in:
Andreas Kling 2021-07-25 18:01:03 +02:00
parent 1fcb1ec367
commit fb0c94ae84

View file

@ -43,7 +43,6 @@ void MenuManager::refresh()
{
ClientConnection::for_each_client([&](ClientConnection& client) {
client.for_each_menu([&](Menu& menu) {
dbgln("MenuManager::refresh {}", &menu);
menu.redraw();
return IterationDecision::Continue;
});