From f9fff69ce47809771a531b3991b03f3b0bd77fd0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 12 Jun 2020 10:21:19 -0500 Subject: [PATCH] BmpView - use DesignMode flag instead of shenanigans --- src/BizHawk.Client.EmuHawk/config/GB/BmpView.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/config/GB/BmpView.cs b/src/BizHawk.Client.EmuHawk/config/GB/BmpView.cs index 61e1f237b4..88f1e17486 100644 --- a/src/BizHawk.Client.EmuHawk/config/GB/BmpView.cs +++ b/src/BizHawk.Client.EmuHawk/config/GB/BmpView.cs @@ -1,6 +1,5 @@ using System; using System.ComponentModel; -using System.Diagnostics; using System.Drawing.Imaging; using System.IO; using System.Drawing; @@ -21,7 +20,7 @@ namespace BizHawk.Client.EmuHawk public BmpView() { - if (Process.GetCurrentProcess().ProcessName == "devenv") + if (DesignMode) { // in the designer SetStyle(ControlStyles.SupportsTransparentBackColor, true);