Skip to content

Commit

Permalink
Fixed underscores not displaying in group conflict dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
1-max-1 committed Aug 12, 2022
1 parent 7131bb6 commit 5e9f295
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dialogs/GroupConflictDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@

<ListView.ItemTemplate>
<DataTemplate>
<RadioButton x:Name="rbGroup" IsChecked="{Binding Path=Selected}" Content="{Binding Path=Text}" GroupName="rbGroup" Height="16"/>
<RadioButton x:Name="rbGroup" IsChecked="{Binding Path=Selected}" GroupName="rbGroup" Height="16">
<TextBlock Text="{Binding Path=Text}" TextAlignment="Center" FontSize="11" TextWrapping="NoWrap" />
</RadioButton>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Expand Down

0 comments on commit 5e9f295

Please sign in to comment.