X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/28ef52fed0fa8f1d49c604cabe52b846bf01d393..838ed8a4d9d55f146522c24623f981d42b5a1d23:/StatusWindowController.m?ds=sidebyside diff --git a/StatusWindowController.m b/StatusWindowController.m index 85d94df..8d9ec8a 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,12 +114,13 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { - image = art; - NSSize size = [image size]; - if (size.width > 110) { - [image setScalesWhenResized:YES]; - [image setSize:NSMakeSize(110, (size.width / size.height) * 110)]; - } + 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 ) { @@ -271,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"