diff options
author | stuconnolly <stuart02@gmail.com> | 2009-09-12 21:03:01 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-09-12 21:03:01 +0000 |
commit | 1e2b95b113242895a988d0db02e7a7fe1708a63d (patch) | |
tree | 01a9ac3b03c7abcd58e2eb0410356ca54f0a1729 /Source/SPHistoryController.m | |
parent | f4bede9def108d8fd25334871ca00971687c4e51 (diff) | |
download | sequelpro-1e2b95b113242895a988d0db02e7a7fe1708a63d.tar.gz sequelpro-1e2b95b113242895a988d0db02e7a7fe1708a63d.tar.bz2 sequelpro-1e2b95b113242895a988d0db02e7a7fe1708a63d.zip |
Forgot to assign the back/forward history menu item's tags resulting in incorrect navigation and menu item validation.
Diffstat (limited to 'Source/SPHistoryController.m')
-rw-r--r-- | Source/SPHistoryController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPHistoryController.m b/Source/SPHistoryController.m index e3fbb9cf..242fd572 100644 --- a/Source/SPHistoryController.m +++ b/Source/SPHistoryController.m @@ -106,7 +106,7 @@ /** * Go backward in the history. */ -- (void)goBackwardInHistory +- (void)goBackInHistory { if (historyPosition == NSNotFound || !historyPosition) return; @@ -133,7 +133,7 @@ { // Back button clicked: case 0: - [self goBackwardInHistory]; + [self goBackInHistory]; break; // Forward button clicked: |