diff options
author | rowanbeentje <rowan@beent.je> | 2009-07-07 23:48:43 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-07-07 23:48:43 +0000 |
commit | e169667bc113a6f6f8b75448dbe450a84e275f63 (patch) | |
tree | 85ef40873bdb869abf58b108816c00eac5c39305 | |
parent | fb40bf3e9dcc521c3607560bd330296a8968910e (diff) | |
download | sequelpro-e169667bc113a6f6f8b75448dbe450a84e275f63.tar.gz sequelpro-e169667bc113a6f6f8b75448dbe450a84e275f63.tar.bz2 sequelpro-e169667bc113a6f6f8b75448dbe450a84e275f63.zip |
- Tweak tabbing in TableSource.m to behave correctly following r991 (see Issue #323 for notes)
-rw-r--r-- | Source/TableSource.m | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/TableSource.m b/Source/TableSource.m index 876c79d9..9dcc571c 100644 --- a/Source/TableSource.m +++ b/Source/TableSource.m @@ -1269,9 +1269,7 @@ traps enter and esc and make/cancel editing without entering next row } } else { if ( column == 2 ) { - [tableSourceView editColumn:column+4 row:row withEvent:nil select:YES]; - } else if ( column == 6 ) { - [tableSourceView editColumn:column+2 row:row withEvent:nil select:YES]; + [tableSourceView editColumn:column+6 row:row withEvent:nil select:YES]; } else { [tableSourceView editColumn:column+1 row:row withEvent:nil select:YES]; } |