Browse Source
Fix for HarfBuzz was missing (#20456)
* Fix for HarfBuzz was missing
* Address review
pull/20459/head
Tim
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
2 deletions
-
src/Browser/Avalonia.Browser/Avalonia.Browser.csproj
-
src/Browser/Avalonia.Browser/BrowserAppBuilder.cs
|
|
|
@ -20,6 +20,7 @@ |
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="../../../packages/Avalonia/Avalonia.csproj" /> |
|
|
|
<ProjectReference Include="../../Skia/Avalonia.Skia/Avalonia.Skia.csproj" /> |
|
|
|
<ProjectReference Include="../../HarfBuzz/Avalonia.HarfBuzz/Avalonia.HarfBuzz.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
|
|
@ -156,7 +156,7 @@ public static class BrowserAppBuilder |
|
|
|
{ |
|
|
|
builder = builder.UseBrowser(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return builder; |
|
|
|
} |
|
|
|
|
|
|
|
@ -166,6 +166,7 @@ public static class BrowserAppBuilder |
|
|
|
return builder |
|
|
|
.UseBrowserRuntimePlatformSubsystem() |
|
|
|
.UseWindowingSubsystem(BrowserWindowingPlatform.Register) |
|
|
|
.UseSkia(); |
|
|
|
.UseSkia() |
|
|
|
.UseHarfBuzz(); |
|
|
|
} |
|
|
|
} |
|
|
|
|