Skip to content

Commit 41623a6

Browse files
committed
Fix System Tray Menu to use new icons and include "Switch Group"
1 parent 691de04 commit 41623a6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/SendspinClient/App.xaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
<!-- Playback Controls -->
3434
<MenuItem Header="{Binding IsPlaying, Converter={StaticResource PlayPauseTextConverter}}"
3535
Command="{Binding PlayPauseCommand}"/>
36-
<MenuItem Header="⏭ Next" Command="{Binding NextTrackCommand}"/>
37-
<MenuItem Header="⏮ Previous" Command="{Binding PreviousTrackCommand}"/>
36+
<MenuItem Header="▶▶ Next" Command="{Binding NextTrackCommand}"/>
37+
<MenuItem Header="◀◀ Previous" Command="{Binding PreviousTrackCommand}"/>
38+
<MenuItem Header="📡 Switch Group" Command="{Binding SwitchGroupCommand}"/>
3839
<Separator/>
3940

4041
<!-- Volume Controls -->

src/SendspinClient/Resources/Converters/BoolToVisibilityConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public class PlayPauseTextConverter : IValueConverter
9999
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
100100
{
101101
var isPlaying = value is bool b && b;
102-
return isPlaying ? " Pause" : "▶ Play";
102+
return isPlaying ? "❚❚ Pause" : "▶ Play";
103103
}
104104

105105
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)

0 commit comments

Comments
 (0)