Skip to content

Commit

Permalink
rename file 😩
Browse files Browse the repository at this point in the history
  • Loading branch information
exp111 committed Nov 26, 2023
1 parent dbb54e9 commit 42f32bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Turbulence.Desktop/Views/Main/ChannelListView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<ToggleButton.IsChecked>
<MultiBinding Converter="{StaticResource EqualsConverter}">
<Binding Path="$parent[ItemsControl].((vm:ChannelListViewModel)DataContext).SelectedChannel" />
<Binding Path="."/>
<Binding Path="." />
</MultiBinding>
</ToggleButton.IsChecked>
<Grid ColumnDefinitions="20,*">
Expand Down
2 changes: 1 addition & 1 deletion Turbulence.Desktop/Views/Main/ChannelListView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void ChannelSelected(object sender, RoutedEventArgs e)
{
if (_vm.SelectedChannel != (Channel)dataContext)
_vm.SelectedChannel = (Channel)dataContext;
else
else // if its already selected, then pls check this one again
control.IsChecked = true;
}
}
Expand Down

0 comments on commit 42f32bc

Please sign in to comment.