From b271ef4a8924f5035b158d75c3b03ac52b0d4b41 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 17 Dec 2019 11:11:47 -0600 Subject: [PATCH] MenuButton - nitpick cleanup --- .../CustomControls/MenuButton.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/MenuButton.cs b/BizHawk.Client.EmuHawk/CustomControls/MenuButton.cs index 098a503eda..0a96b123ed 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/MenuButton.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/MenuButton.cs @@ -9,26 +9,26 @@ namespace BizHawk.Client.EmuHawk [DefaultValue(null)] public ContextMenuStrip Menu { get; set; } - protected override void OnMouseDown(MouseEventArgs mevent) + protected override void OnMouseDown(MouseEventArgs e) { - base.OnMouseDown(mevent); + base.OnMouseDown(e); - if (Menu != null && mevent.Button == MouseButtons.Left) + if (Menu != null && e.Button == MouseButtons.Left) { - Menu.Show(this, mevent.Location); + Menu.Show(this, e.Location); } } - protected override void OnPaint(PaintEventArgs pevent) + protected override void OnPaint(PaintEventArgs e) { - base.OnPaint(pevent); + base.OnPaint(e); int arrowX = ClientRectangle.Width - 14; int arrowY = ClientRectangle.Height / 2 - 1; Brush brush = Enabled ? SystemBrushes.ControlText : SystemBrushes.ButtonShadow; Point[] arrows = { new Point(arrowX, arrowY), new Point(arrowX + 7, arrowY), new Point(arrowX + 3, arrowY + 4) }; - pevent.Graphics.FillPolygon(brush, arrows); + e.Graphics.FillPolygon(brush, arrows); } } } \ No newline at end of file