diff options
author | stuconnolly <stuart02@gmail.com> | 2010-01-22 01:25:02 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-01-22 01:25:02 +0000 |
commit | 2b706eeebd9f4a9eaa1ed970af6bb4050b29ab0f (patch) | |
tree | 1a5644f80ab1b5ac911fc550b393eb830d2b3c4d | |
parent | aea4d46d121e30285014bf70aa277b140e0fd16d (diff) | |
download | sequelpro-2b706eeebd9f4a9eaa1ed970af6bb4050b29ab0f.tar.gz sequelpro-2b706eeebd9f4a9eaa1ed970af6bb4050b29ab0f.tar.bz2 sequelpro-2b706eeebd9f4a9eaa1ed970af6bb4050b29ab0f.zip |
Restore default behaviour of bringing the most recent window to the front when clicking the dock icon.
-rw-r--r-- | Source/SPAppController.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 490edac3..4431976f 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -442,10 +442,12 @@ [firstTableDocument makeWindowControllers]; [firstTableDocument showWindows]; } + + return NO; } // Return NO to the automatic opening - return NO; + return YES; } /** |