From 4937382001c6e1c58c87cac050747aa95623dda8 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Thu, 7 Aug 2025 20:20:48 -0400 Subject: [PATCH] NotificationPopup: commented out debug console.log --- Widgets/Notification/NotificationPopup.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Widgets/Notification/NotificationPopup.qml b/Widgets/Notification/NotificationPopup.qml index 761fd4f..eced75f 100644 --- a/Widgets/Notification/NotificationPopup.qml +++ b/Widgets/Notification/NotificationPopup.qml @@ -12,12 +12,12 @@ Item { // Get list of available monitors/screens property var monitors: Quickshell.screens || [] - Component.onCompleted: { - console.log("[NotificationPopup] Initialized with", monitors.length, "monitors"); - for (let i = 0; i < monitors.length; i++) { - console.log("[NotificationPopup] Monitor", i, ":", monitors[i].name); - } - } + // Component.onCompleted: { + // console.log("[NotificationPopup] Initialized with", monitors.length, "monitors"); + // for (let i = 0; i < monitors.length; i++) { + // console.log("[NotificationPopup] Monitor", i, ":", monitors[i].name); + // } + // } // Global visibility state for all notification popups property bool notificationsVisible: true @@ -72,7 +72,7 @@ Item { let shouldShow = notificationMonitors.length === 0 || notificationMonitors.includes("*") || notificationMonitors.includes(currentScreenName); - console.log("[NotificationPopup] Monitor", currentScreenName, "should show:", shouldShow, "monitors:", JSON.stringify(notificationMonitors)); + // console.log("[NotificationPopup] Monitor", currentScreenName, "should show:", shouldShow, "monitors:", JSON.stringify(notificationMonitors)); return shouldShow; }