jp2masa
jp2masa
_From @SapphireGitHub on May 15, 2017 23:18_ Update: I think it supports x64 now.
We don't have x64 support, but x86 can run on x86_64 computers.
_From @mterwoord on January 4, 2016 8:41_ Lets also include in this issue: - Finally clause - generic testing
Note from #64 (see also https://github.com/CosmosOS/IL2CPU/pull/64#discussion_r223853431): When throwing an exception, we should empty the stack (if there's no item in the stack, do nothing). I think it would be a...
Double click doesn't work because the current logic is that if a cell is selected, a single click should open edit mode. Unfortunately, I think no logic for cell selection...
I don't think that would help, because the NRE occurs inside the lambda: ``` System.NullReferenceException: Object reference not set to an instance of an object. at lambda_method129(Closure , Object )...
This is probably related to #7889. The fix wasn't complete I guess, because `ScrollContentPresenter` does not handle `Padding` correctly. Looking at `ContentPresenter`: https://github.com/AvaloniaUI/Avalonia/blob/0b01a51c9e83a779ea273277d9efc8a90e444fea/src/Avalonia.Controls/Presenters/ContentPresenter.cs#L592-L595 I think it would be enough to...
I was trying to fix this and the current design is just broken I guess, there are 2 options: 1. Fix `ScrollContentPresenter` to accept border and padding, which I was...
Something like this, where border is black, padding is orange, and content is white?  This is actually something that you can't achieve without handling border and padding on scroll...
> which works because all IReadOnlyList\ are castable to IReadOnlyList\ because of the rules of Covariance. Not totally true, if `T` is a `struct` I think it won't work.