Browse Source

Merge pull request #9259 from AvaloniaUI/fixes/more-wasm-fixes2

wasm prevent touch flashing android.
pull/9261/head
Dan Walmsley 4 years ago
committed by GitHub
parent
commit
3e169c6b7a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/Web/Avalonia.Web/AvaloniaView.cs

3
src/Web/Avalonia.Web/AvaloniaView.cs

@ -77,8 +77,7 @@ namespace Avalonia.Web
_topLevelImpl.SetCssCursor = (cursor) =>
{
InputHelper.SetCursor(_containerElement, cursor); // macOS
InputHelper.SetCursor(_canvas, cursor); // windows
InputHelper.SetCursor(_containerElement, cursor);
};
_topLevel.Prepare();

Loading…
Cancel
Save