Properly implement MPRIS Raise() method

This commit is contained in:
Bart De Vries 2021-05-28 21:51:51 +02:00
parent b776dd22cb
commit 9ae93dd064
1 changed files with 4 additions and 1 deletions

View File

@ -132,7 +132,10 @@ Kirigami.ApplicationWindow {
onRaisePlayer:
{
// TODO: implement
root.visible = true
root.show()
root.raise()
root.requestActivate()
}
}