From: Alexander Strange Date: Wed, 11 Feb 2004 07:04:54 +0000 (+0000) Subject: Aspect Ratio v2 X-Git-Tag: v1.3~34 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/838ed8a4d9d55f146522c24623f981d42b5a1d23 Aspect Ratio v2 --- diff --git a/StatusWindowController.m b/StatusWindowController.m index 75a1a9d..8d9ec8a 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,12 +114,13 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { - NSSize oldSize; + NSSize oldSize, newSize; image = art; [image setScalesWhenResized:YES]; oldSize = [image size]; - - [image setSize:NSMakeSize(110,oldSize.height * (110.0f / oldSize.width))]; + 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 ) {