summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-25 18:01:03 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-25 18:01:24 +0200
commitfb0c94ae8441318f630f095d67d54e19ae295198 (patch)
treee86d734f07ff4d628ef463e5ec21a6467742e2c3 /Userland/Services
parent1fcb1ec367c157b2f58aefa4ea1a391530b7a76f (diff)
downloadserenity-fb0c94ae8441318f630f095d67d54e19ae295198.zip
WindowServer: Remove debug spam in MenuManager::refresh()
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/WindowServer/MenuManager.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/MenuManager.cpp b/Userland/Services/WindowServer/MenuManager.cpp
index 0e2a2d3065..c222a244d5 100644
--- a/Userland/Services/WindowServer/MenuManager.cpp
+++ b/Userland/Services/WindowServer/MenuManager.cpp
@@ -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;
});