X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/703be04ff6d1a493d2920adc9a07911c587aea14..838ed8a4d9d55f146522c24623f981d42b5a1d23:/StatusWindowController.m?ds=inline diff --git a/StatusWindowController.m b/StatusWindowController.m index 117c205..8d9ec8a 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,16 +114,13 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { - NSImageRep *artRep = [art bestRepresentationForDevice:nil]; - image = [[NSImage alloc] initWithSize:NSMakeSize(110, 110)]; - [image lockFocus]; - { - [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationHigh]; - [[NSGraphicsContext currentContext] setShouldAntialias:YES]; - [artRep drawInRect:NSMakeRect(3, 3, 104, 104)]; - } - [image unlockFocus]; - [image autorelease]; + NSSize oldSize, newSize; + image = art; + [image setScalesWhenResized:YES]; + oldSize = [image size]; + if (oldSize.width > oldSize.height) newSize = NSMakeSize(110,oldSize.height * (110.0f / oldSize.width)); + else newSize = NSMakeSize(oldSize.width * (110.0f / oldSize.height),110); + [image setSize:newSize]; } else if ( source == ITMTRemoteLibrarySource ) { image = [NSImage imageNamed:@"Library"]; } else if ( source == ITMTRemoteCDSource ) { @@ -275,7 +272,7 @@ static StatusWindowController *sharedController; { NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?."; - [_window setImage:[NSImage imageNamed:@"Register"]]; + [_window setImage:[NSImage imageNamed:@"Setup"]]; [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]]; [_window buildDialogWindowWithMessage:message defaultButton:@"Reconnect"