Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions MMLaunch/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ module Program =
AppBuilder
.Configure<App>()
.UsePlatformDetect()
// Avalonia 11 can present a blank first frame on the GPU compositor
// path until the window receives input/resize (the "blank until you
// press Tab" bug). Software rendering composites synchronously and
// blits the frame, sidestepping that race; fine for this lightweight
// launcher UI.
.With(Win32PlatformOptions(RenderingMode = [| Win32RenderingMode.Software |]))
.WithInterFont()

[<STAThread>]
Expand Down
Loading