From 9ae93dd064a7ad922250fc6da7a95ec2e1bb2846 Mon Sep 17 00:00:00 2001 From: Bart De Vries Date: Fri, 28 May 2021 21:51:51 +0200 Subject: [PATCH] Properly implement MPRIS Raise() method --- src/qml/main.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 5c9b0631..0dba397c 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -132,7 +132,10 @@ Kirigami.ApplicationWindow { onRaisePlayer: { - // TODO: implement + root.visible = true + root.show() + root.raise() + root.requestActivate() } }