fix(music): replace the Instant Mix faders with a wand icon

The three vertical faders read as an equalizer in a music context and
are the vertical twin of the video player's settings icon. Use
wand_stars, which names what the action produces and collides with no
neighbouring affordance in the action bar or the music context menu.

close #1629
This commit is contained in:
edde746
2026-08-03 13:29:27 +02:00
parent 0f5e5c8b6e
commit bbaf5f0f9e
4 changed files with 98 additions and 2 deletions
+1 -1
View File
@@ -395,7 +395,7 @@ class MediaContextMenuState extends State<MediaContextMenu> {
// reachable (capabilities stay truthy for offline servers).
if (itemServerOnline && (mediaClient?.capabilities.instantMix ?? false)) {
menuActions.add(
_MenuAction(value: 'music_instant_mix', icon: Symbols.instant_mix_rounded, label: t.music.instantMix),
_MenuAction(value: 'music_instant_mix', icon: Symbols.wand_stars_rounded, label: t.music.instantMix),
);
}
+1 -1
View File
@@ -33,7 +33,7 @@ List<FocusableAction> buildMusicActions({
if (onInstantMix != null)
FocusableAction(
debugLabel: 'music_instant_mix',
icon: Symbols.instant_mix_rounded,
icon: Symbols.wand_stars_rounded,
tooltip: t.music.instantMix,
onPressed: onInstantMix,
),