From 3f1bcf1ae87dffbe36c9711224ea7473f303ee6f Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sat, 15 Nov 2025 19:56:18 -0500 Subject: [PATCH] TrayMenu: tweaks --- Modules/Bar/Extras/TrayMenu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Extras/TrayMenu.qml b/Modules/Bar/Extras/TrayMenu.qml index a1e0cde5..f8d5840b 100644 --- a/Modules/Bar/Extras/TrayMenu.qml +++ b/Modules/Bar/Extras/TrayMenu.qml @@ -45,7 +45,7 @@ PopupWindow { // Uses retry mechanism with exponential backoff for reliability Timer { id: menuLoadTimer - interval: 150 // Start with 150ms (increased from 100ms for more stability) + interval: 50 repeat: false onTriggered: { // Early exit if not visible, no stable menu, or already loading @@ -189,7 +189,7 @@ PopupWindow { function showAt(item, x, y) { if (!item) { - Logger.warn("TrayMenu", "anchorItem is undefined, won't show menu.") + Logger.w("TrayMenu", "anchorItem is undefined, won't show menu.") return }