Nikita Tsukanov

Results 161 comments of Nikita Tsukanov

The problem with gamepads is the key mapping. What button is X again?

I think we should stick to the HTML JS standard since it covers more platforms and even has some VR/AR controllers for future-proofing. >Also on windows we don't have native...

We are currently switching to a non-pumping SynchronizationContext before doing any calls to SkiaSharp on the UI thread and when handing WM_SIZE and WM_PAINT. So the app is switching between...

> Unless, or until this can be fixed SkiaSharp I'm tempted to just disable the pumping wait entirely. Doing that on STA thread breaks .NET itself in various ways. We've...

Also happens with CentOS 7 - https://github.com/AvaloniaUI/Avalonia/issues/3694

Fonts are loadable via `SkTypeface.FromFile`. `fc-match` command line utility is able to locate the font that corresponds to the "Sans" name.

Another repro https://github.com/AvaloniaUI/Avalonia/issues/3701

>It always happens with snap packages? The first report with desktop Manjaro Linux (non-snap) was about a stack overflow in Avalonia code. We've identified that it was caused by `SKTypeface.Default.FamilyName`...

Another problem would be FluentTheme itself referencing all of the styles directly. I wonder if IL linker supports weak references, so we could generate something like this: ``` if(CompilerServices.IsTypeReferenced()) this.Add(new...

> Defining one directly at the assembly level seemed wrong since only the compiler caller knows where it wants the types to be created. We could provide a callback, so...