diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-04 07:51:35 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-04 07:51:35 +0000 |
commit | e4272ce9fba25abc8b52f7e8240f14f589547ffb (patch) | |
tree | b9f67027bfb37dd9bb0d596590d61e4c16fa021c /Source | |
parent | 4520742e325fd62423d0956450291cd10e407142 (diff) | |
download | sequelpro-e4272ce9fba25abc8b52f7e8240f14f589547ffb.tar.gz sequelpro-e4272ce9fba25abc8b52f7e8240f14f589547ffb.tar.bz2 sequelpro-e4272ce9fba25abc8b52f7e8240f14f589547ffb.zip |
• changed keyboard navigation
- set focus to Table List filter field after selecting a database
- TAB key in Table List filter field sets focus to Table List for selection/navigation
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableDocument.h | 2 | ||||
-rw-r--r-- | Source/TableDocument.m | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h index b3327198..29296e9b 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -49,6 +49,8 @@ IBOutlet id spHistoryControllerInstance; IBOutlet id spExportControllerInstance; + IBOutlet NSSearchField *listFilterField; + IBOutlet id tableWindow; IBOutlet id titleAccessoryView; diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 77bc78d7..c2c41a13 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -430,6 +430,9 @@ // Add a history entry [spHistoryControllerInstance updateHistoryEntries]; + + // Set focus to table list filter field + [tableWindow makeFirstResponder:listFilterField]; } /** |