Skip to content

Commit

Permalink
Upgrade to AppSuite 2.3.44.924-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster620 committed Sep 24, 2023
1 parent 6ff68d4 commit e8dcfce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ULogViewer/Controls/AppOptionsDialog.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ protected override void OnOpened(EventArgs e)
};
if (initControl != null)
{
this.rootScrollViewer.ScrollToContent(initControl);
this.rootScrollViewer.ScrollIntoView(initControl);
if (initControl is Avalonia.Controls.TextBlock textBlock)
this.AnimateTextBlock(textBlock);
else if (initControl is Border headerBorder)
Expand Down Expand Up @@ -265,7 +265,7 @@ void ScrollToPanel(ToggleButton button)
return;

// scroll to panel
this.rootScrollViewer.SmoothScrollToContent(panel);
this.rootScrollViewer.SmoothScrollIntoView(panel);

// update navigation bar
this.InvalidateNavigationBar();
Expand Down
2 changes: 1 addition & 1 deletion ULogViewer/Controls/LogProfileEditorDialog.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1710,7 +1710,7 @@ void ScrollToPanel(ToggleButton button)
return;

// scroll to panel
this.baseScrollViewer.SmoothScrollToContent(panel);
this.baseScrollViewer.SmoothScrollIntoView(panel);

// update navigation bar
this.InvalidateNavigationBar();
Expand Down
2 changes: 1 addition & 1 deletion ULogViewer/Controls/LogProfileSelectionDialog.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ void ScrollToLogProfilesPanel(ToggleButton button)
return;

// scroll to panel
this.scrollViewer.SmoothScrollToContent(panel);
this.scrollViewer.SmoothScrollIntoView(panel);

// update navigation bar
this.InvalidateNavigationBar();
Expand Down
6 changes: 3 additions & 3 deletions ULogViewer/ULogViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CarinaStudio.AppSuite.Core" Version="2.3.43.923-dev" />
<PackageReference Include="CarinaStudio.AppSuite.Fonts" Version="2.3.43.923-dev" />
<PackageReference Include="CarinaStudio.AppSuite.SyntaxHighlighting" Version="2.3.43.923-dev" />
<PackageReference Include="CarinaStudio.AppSuite.Core" Version="2.3.44.924-dev" />
<PackageReference Include="CarinaStudio.AppSuite.Fonts" Version="2.3.44.924-dev" />
<PackageReference Include="CarinaStudio.AppSuite.SyntaxHighlighting" Version="2.3.44.924-dev" />
<PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
<PackageReference Include="evtx" Version="1.2.0" />
<PackageReference Include="LiveChartsCore.SkiaSharpView.Avalonia" Version="2.0.0-beta.950" />
Expand Down

0 comments on commit e8dcfce

Please sign in to comment.