From b137feac16e838c254686badcfd20bd90d9a887e Mon Sep 17 00:00:00 2001 From: vaguesyntax Date: Sun, 26 Oct 2025 12:24:35 +0300 Subject: [PATCH] fix: recognized notif not getting pushed --- .../androidStyle/AndroidMusicRecognition.qml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/sidebarRight/quickToggles/androidStyle/AndroidMusicRecognition.qml b/dots/.config/quickshell/ii/modules/sidebarRight/quickToggles/androidStyle/AndroidMusicRecognition.qml index a472093e6..924ec936c 100644 --- a/dots/.config/quickshell/ii/modules/sidebarRight/quickToggles/androidStyle/AndroidMusicRecognition.qml +++ b/dots/.config/quickshell/ii/modules/sidebarRight/quickToggles/androidStyle/AndroidMusicRecognition.qml @@ -49,6 +49,7 @@ AndroidQuickToggleButton { root.recognizedTrackSubtitle = obj.track.subtitle root.recognizedTrackURL = obj.track.url musicReconizedProc.running = true + recognizedMusicKiller.running = true toggled = false } } @@ -68,10 +69,14 @@ AndroidQuickToggleButton { } } - + Timer { + id: recognizedMusicKiller + running: false; repeat: false + interval: 5000 + onTriggered: musicReconizedProc.running = false + } StyledToolTip { - //text: Translation.tr("Identifies the song that’s playing right now") - text: "Identifies the song that’s playing right now" + text: Translation.tr("Identifies the song that’s playing right now") } }