fix image placement. Make it one pixel higher

This commit is contained in:
Steve Checkoway
2003-08-01 10:23:02 +00:00
parent 7f9aed802b
commit 6dd3275d00
@@ -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);