diff options
author | rowanbeentje <rowan@beent.je> | 2010-07-03 14:33:24 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-07-03 14:33:24 +0000 |
commit | 32e3cbaf916d06f9375d4b19c4ae2b4492f7960a (patch) | |
tree | 468dfa985a6258aea70179498465112a93f6e4ac /Source/SPAppController.m | |
parent | f57748788a3d9054e5e6c88e8a187e15e5bd7b2d (diff) | |
download | sequelpro-32e3cbaf916d06f9375d4b19c4ae2b4492f7960a.tar.gz sequelpro-32e3cbaf916d06f9375d4b19c4ae2b4492f7960a.tar.bz2 sequelpro-32e3cbaf916d06f9375d4b19c4ae2b4492f7960a.zip |
- Fix tab bars in windows with only one tab not disappearing after dragging a tab past/through them, by using PSMTabBar notifications instead of our own notifications; also fix PSMTabBar notification ordering.
- When a tab drag starts, reorder all windows in front of other applications
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r-- | Source/SPAppController.m | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 2d719c95..c5c2ed2d 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -33,6 +33,7 @@ #import "SPConstants.h" #import "SPWindowController.h" +#import <PSMTabBar/PSMTabBarControl.h> #import <Sparkle/Sparkle.h> @implementation SPAppController @@ -79,7 +80,10 @@ // Register SPAppController for AppleScript events [[NSScriptExecutionContext sharedScriptExecutionContext] setTopLevelObject:self]; - + + // Register for drag start notifications - used to bring all windows to front + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tabDragStarted:) name:PSMTabDragDidBeginNotification object:nil]; + isNewFavorite = NO; } @@ -500,6 +504,14 @@ return nil; } +/** + * When tab drags start, bring all the windows in front of other applications. + */ +- (void)tabDragStarted:(id)sender +{ + [NSApp arrangeInFront:self]; +} + #pragma mark - #pragma mark IBAction methods @@ -920,6 +932,8 @@ */ - (void)dealloc { + [[NSNotificationCenter defaultCenter] removeObserver:self]; + if(_spfSessionDocData) [_spfSessionDocData release], _spfSessionDocData = nil; [prefsController release], prefsController = nil; [aboutController release], aboutController = nil; |