Skip to content

Commit

Permalink
With this you can use the middle click to select an area without scro…
Browse files Browse the repository at this point in the history
…ll the window
  • Loading branch information
sulivanganter committed Oct 23, 2023
1 parent 3cbff4a commit d6fac5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@



<div oncontextmenu="return false;" onmousewheel="return false;" style=@Style>
<div oncontextmenu="return false;" onmousewheel="return false;" onmousedown="return false;" style=@Style>
<SKCanvasView @ref="SKView" style="width:inherit; height:inherit;" OnPaintSurface="OnPaintSurface" IgnorePixelScaling="true" EnableRenderLoop="EnableRenderLoop"
@onpointerdown="OnPointerPressed"
@onpointermove="OnPointerMoved"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inherits BlazorPlotBase


<div oncontextmenu="return false;" onmousewheel="return false;" style=@Style>
<div oncontextmenu="return false;" onmousewheel="return false;" onmousedown="return false;" style=@Style>
<SKGLView @ref="SKView" style="width:inherit; height:inherit;" OnPaintSurface="OnPaintSurface" IgnorePixelScaling="true" EnableRenderLoop="EnableRenderLoop"
@onpointerdown="OnPointerPressed"
@onpointermove="OnPointerMoved"
Expand Down

0 comments on commit d6fac5e

Please sign in to comment.