From: Joseph Spiros Date: Wed, 30 Mar 2011 06:56:16 +0000 (+0000) Subject: Merge branch 'master' of git://github.com/ksuther/MenuTunes X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/HEAD?hp=5d522e078c23fa6f309bf38b44c6090e05581f01 Merge branch 'master' of git://github.com/ksuther/MenuTunes * 'master' of git://github.com/ksuther/MenuTunes: Reset the screen that the status window is on when the system's screens change. --- diff --git a/StatusWindowController.m b/StatusWindowController.m index 2e4593e..aa684a3 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -98,6 +98,8 @@ static StatusWindowController *sharedController; } else { [(ITTSWBackgroundView *)[_window contentView] setBackgroundColor:[NSColor blueColor]]; } + + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenParametersChanged:) name:NSApplicationDidChangeScreenParametersNotification object:nil]; } return self; @@ -105,10 +107,23 @@ static StatusWindowController *sharedController; - (void)dealloc { + [[NSNotificationCenter defaultCenter] removeObserver:self]; + [_window release]; [super dealloc]; } +- (void)screenParametersChanged:(NSNotification *)notification +{ + NSArray *screens = [NSScreen screens]; + int screenIndex = [df integerForKey:@"statusWindowScreenIndex"]; + + if (screenIndex >= [screens count]) { + screenIndex = 0; + } + [_window setScreen:[screens objectAtIndex:screenIndex]]; +} + - (void)showSongInfoWindowWithSource:(ITMTRemotePlayerSource)source title: (NSString *)title album: (NSString *)album