From 838ed8a4d9d55f146522c24623f981d42b5a1d23 Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Wed, 11 Feb 2004 07:04:54 +0000 Subject: [PATCH] Aspect Ratio v2 --- StatusWindowController.m | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 ) { -- 2.20.1