Skip to content

Commit

Permalink
修复字幕初始大小 (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richasy authored Oct 1, 2024
1 parent c81e241 commit 2c8e1c4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ private void HandleViewModelPropertyChanged(PropertyChangedEventArgs e)
{
_loadingWidget.Visibility = ViewModel.IsPlayerDataLoading ? Visibility.Visible : Visibility.Collapsed;
}

if (!ViewModel.IsPlayerDataLoading)
{
DispatcherQueue.TryEnqueue(ArrangeSubtitleSize);
}
}
}

Expand Down

0 comments on commit 2c8e1c4

Please sign in to comment.