From cb562b2e4cecb30b4feae249bea98a3aa46474ec Mon Sep 17 00:00:00 2001 From: Michael Buckley Date: Sat, 20 Jun 2020 17:35:14 -0700 Subject: [PATCH] Mac: Remove 1-pixel border that was cutting into the window --- macosx/Snes9x/AppDelegate.m | 1 + 1 file changed, 1 insertion(+) diff --git a/macosx/Snes9x/AppDelegate.m b/macosx/Snes9x/AppDelegate.m index ccc206a6..a49991e1 100644 --- a/macosx/Snes9x/AppDelegate.m +++ b/macosx/Snes9x/AppDelegate.m @@ -51,6 +51,7 @@ static NSWindowFrameAutosaveName const kMainWindowIdentifier = @"s9xMainWindow"; window.restorationClass = [self class]; window.frameAutosaveName = kMainWindowIdentifier; window.releasedWhenClosed = NO; + window.backgroundColor = NSColor.clearColor; if ( ![window setFrameUsingName:kMainWindowIdentifier] ) {