From 7653be606213542da06658ed8192b5559703e841 Mon Sep 17 00:00:00 2001 From: Marco Cutecchia Date: Sun, 17 Oct 2021 21:14:40 +0200 Subject: [PATCH] WindowServer: Remove some commented code in WindowManager.cpp --- Userland/Services/WindowServer/WindowManager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Services/WindowServer/WindowManager.cpp b/Userland/Services/WindowServer/WindowManager.cpp index 946f5b8d5e..810035d881 100644 --- a/Userland/Services/WindowServer/WindowManager.cpp +++ b/Userland/Services/WindowServer/WindowManager.cpp @@ -409,10 +409,8 @@ void WindowManager::greet_window_manager(WMClientConnection& conn) for_each_window_stack([&](auto& window_stack) { window_stack.for_each_window([&](Window& other_window) { - //if (conn.window_id() != other_window.window_id()) { tell_wm_about_window(conn, other_window); tell_wm_about_window_icon(conn, other_window); - //} return IterationDecision::Continue; }); return IterationDecision::Continue;