code_style: rename platform_finder to platformFinder and run dotnet format to apply code style rules

This commit is contained in:
leo 2024-04-29 17:55:38 +08:00
parent 09b8564636
commit a5150edee0
6 changed files with 21 additions and 19 deletions

View file

@ -686,12 +686,14 @@ namespace SourceGit.Views
private void OnTextAreaPointerWheelChanged(object sender, PointerWheelEventArgs e)
{
if (!TextArea.IsFocused) Focus();
if (!TextArea.IsFocused)
Focus();
}
private void OnTextViewScrollChanged(object sender, ScrollChangedEventArgs e)
{
if (TextArea.IsFocused) SetCurrentValue(SyncScrollOffsetProperty, _scrollViewer.Offset);
if (TextArea.IsFocused)
SetCurrentValue(SyncScrollOffsetProperty, _scrollViewer.Offset);
}
private void OnTextViewContextRequested(object sender, ContextRequestedEventArgs e)