Skip to content

Commit 6edadc2

Browse files
committed
YouTubeLiveの設定で上位チャットに変更しても次回開いた時にすべてのチャットに戻ってしまう不具合を修正
1 parent 420514a commit 6edadc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

YouTubeLiveSitePlugin/Test2/YouTubeLiveOptionsPanel.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
<ColumnDefinition Width="43*"/>
2323
<ColumnDefinition Width="18*"/>
2424
</Grid.ColumnDefinitions>
25-
<RadioButton x:Name="radioJouiChat" GroupName="ChatType" Content="上位チャット" IsChecked="{Binding IsAllChat, Converter={StaticResource notConverter}}" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
26-
<RadioButton x:Name="radioAllChat" GroupName="ChatType" Content="すべてのチャット" IsChecked="{Binding IsAllChat}" HorizontalAlignment="Left" Margin="10,30,0,0" VerticalAlignment="Top"/>
25+
<RadioButton x:Name="radioJouiChat" GroupName="ChatType" Content="上位チャット" IsChecked="{Binding ElementName=radioAllChat, Path=IsChecked, Converter={StaticResource notConverter}, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
26+
<RadioButton x:Name="radioAllChat" GroupName="ChatType" Content="すべてのチャット" IsChecked="{Binding IsAllChat, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="10,30,0,0" VerticalAlignment="Top"/>
2727
</Grid>
2828
</GroupBox>
2929
<xctk:ColorPicker SelectedColor="{Binding MembershipBackColor}" Margin="160,93,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Height="22" />

0 commit comments

Comments
 (0)