Fix music widget custom action placement

This commit is contained in:
MM20
2025-12-17 22:16:08 +01:00
parent 07880be1fa
commit 0bfa00f192

View File

@@ -387,14 +387,14 @@ fun MusicWidget(widget: MusicWidget) {
}
}
}
CustomActions(
actions = supportedActions,
onActionSelected = {
viewModel.performCustomAction(it)
},
playerPackage = viewModel.currentPlayerPackage,
)
}
CustomActions(
actions = supportedActions,
onActionSelected = {
viewModel.performCustomAction(it)
},
playerPackage = viewModel.currentPlayerPackage,
)
}
}
}