NotificationPopup: commented out debug console.log

This commit is contained in:
quadbyte 2025-08-07 20:20:48 -04:00
parent bf4bc1bee2
commit 4937382001

View file

@ -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;
}