Skip to content

Commit

Permalink
升级私有库
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi committed Sep 3, 2024
1 parent 9e19740 commit f04f7aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<AvaloniaVersion>11.1.0</AvaloniaVersion>
<!-- 这是私有的版本:https://github.com/dotnet-campus/Avalonia/releases/tag/11.1.3-hotfix05 -->
<AvaloniaVersion>11.1.3-hotfix05</AvaloniaVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public static AppBuilder BuildAvaloniaApp()
.WithInterFont()
.With(new DispatcherOptions()
{
InputStarvationTimeout = TimeSpan.FromDays(1)
InputStarvationTimeout = TimeSpan.FromDays(1),
// 修复笔迹延迟
// https://github.com/AvaloniaUI/Avalonia/pull/16896
InstantRendering = true,
})
.LogToTrace()
.UseReactiveUI();
Expand Down

0 comments on commit f04f7aa

Please sign in to comment.