From 67e3eddf0ac2fb2410692417b401f9d9aa98adaa Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Fri, 13 Sep 2024 01:55:58 +0200 Subject: [PATCH] window: Removed obnoxious logging --- src/window.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/window.cpp b/src/window.cpp index 21557d90e2..c9965e7530 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -834,8 +834,6 @@ bool Window::isOnDesktop(VirtualDesktop *desktop) const bool Window::isOnCurrentDesktop() const { - bool is = isOnDesktop(VirtualDesktopManager::self()->currentDesktop(output())); - qInfo("isOnDesktop %d", is); return isOnDesktop(VirtualDesktopManager::self()->currentDesktop(output())); }