Skip to content

Commit

Permalink
Rename field to respect editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
davkean committed Nov 12, 2021
1 parent 7d68152 commit 4f83487
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace AudioSwitcher.Presentation.UI.Renderer
internal class DeviceFlyoutRenderer : ToolStripNativeRenderer
{
private readonly static string[] NewLine = new[] { Environment.NewLine };
private readonly VisualStyleElement FlyoutWindow = VisualStyleElement.CreateElement("Flyout", 6, 0);
private readonly VisualStyleElement _flyoutWindow = VisualStyleElement.CreateElement("Flyout", 6, 0);

public DeviceFlyoutRenderer()
: base(ToolbarTheme.Toolbar)
Expand All @@ -36,7 +36,7 @@ protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e)
{
if (EnsureRenderer())
{
Renderer.SetParameters(FlyoutWindow);
Renderer.SetParameters(_flyoutWindow);
Renderer.DrawBackground(e.Graphics, e.AffectedBounds);
}
}
Expand Down

0 comments on commit 4f83487

Please sign in to comment.