From 6dd3275d0071d1ba4940654951dd5328cad941d2 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 1 Aug 2003 10:23:02 +0000 Subject: [PATCH] fix image placement. Make it one pixel higher --- stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm index 0fd3c8b2d1..0240cd8908 100644 --- a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm +++ b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm @@ -16,7 +16,7 @@ void MakeNewCocoaWindow() { NSImage *image = [NSImage imageNamed:@"loading"]; NSSize size = [image size]; float height = size.height; - NSImageView *iView = [[[NSImageView alloc] initWithFrame:NSMakeRect(0, height, size.width, height)] autorelease]; + NSImageView *iView = [[[NSImageView alloc] initWithFrame:NSMakeRect(0, height, size.width, height+1)] autorelease]; NSView *view; NSRect rect; rect.origin = NSMakePoint(0, height);