Skip to content

Commit 32af06a

Browse files
committed
StyleCop issue
1 parent 3415252 commit 32af06a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/OxyPlot.WindowsForms/PlotView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public PlotView()
100100
this.ZoomVerticalCursor = Cursors.SizeNS;
101101

102102
var DoCopy = new DelegatePlotCommand<OxyKeyEventArgs>((view, controller, args) => this.DoCopy(view, args));
103-
ActualController.BindKeyDown(OxyKey.C, OxyModifierKeys.Control, DoCopy);
103+
this.ActualController.BindKeyDown(OxyKey.C, OxyModifierKeys.Control, DoCopy);
104104
}
105105

106106
/// <summary>
@@ -561,7 +561,7 @@ private static OxyModifierKeys GetModifiers()
561561
/// </summary>
562562
private void DoCopy(IPlotView view, OxyInputEventArgs args)
563563
{
564-
var background = this.ActualModel.Background.IsVisible() ? this.ActualModel.Background : ActualModel.Background;
564+
var background = this.ActualModel.Background.IsVisible() ? this.ActualModel.Background : this.ActualModel.Background;
565565
if (background.IsInvisible())
566566
{
567567
background = OxyColors.White;

0 commit comments

Comments
 (0)