Skip to content

Commit

Permalink
ScottPlot4.Eto: update event method for nullable sender
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden committed Apr 13, 2024
1 parent 0fe5ce5 commit 87c5710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ScottPlot4/ScottPlot.Eto/PlotView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ public void RefreshRequest(RenderType renderType = RenderType.LowQualityThenHigh
private void OnBitmapUpdated(object? sender, EventArgs e) => UpdatePlotBitmap(Backend.GetLatestBitmap());
private void OnCursorChanged(object? sender, EventArgs e) => Cursor = Cursors[Backend.Cursor];
private void OnRightClicked(object? sender, EventArgs e) => RightClicked?.Invoke(this, e);
private void OnLeftClicked(object sender, EventArgs e) => LeftClicked?.Invoke(this, e);
private void OnLeftClickedPlottable(object sender, EventArgs e) => LeftClickedPlottable?.Invoke(sender, e);
private void OnLeftClicked(object? sender, EventArgs e) => LeftClicked?.Invoke(this, e);
private void OnLeftClickedPlottable(object? sender, EventArgs e) => LeftClickedPlottable?.Invoke(sender, e);
private void OnPlottableDragged(object? sender, EventArgs e) => PlottableDragged?.Invoke(sender, e);
private void OnPlottableDropped(object? sender, EventArgs e) => PlottableDropped?.Invoke(sender, e);
private void OnAxesChanged(object? sender, EventArgs e) => AxesChanged?.Invoke(this, e);
Expand Down

0 comments on commit 87c5710

Please sign in to comment.