Last change
on this file since 578 was 451, checked in by Nicholas Riley, 17 years ago |
Work around improper checkbox focus with full keyboard access enabled.
|
File size:
413 bytes
|
Line | |
---|
1 | //
|
---|
2 | // FSATableView.m
|
---|
3 | // F-Script Anywhere
|
---|
4 | //
|
---|
5 | // Created by Nicholas Riley on 3/26/08.
|
---|
6 | // Copyright 2008 Nicholas Riley. All rights reserved.
|
---|
7 | //
|
---|
8 |
|
---|
9 | #import "FSATableView.h"
|
---|
10 |
|
---|
11 |
|
---|
12 | @implementation FSATableView
|
---|
13 |
|
---|
14 | // undocumented, Leopard-only, only way I can figure out to bypass inter-cell navigation
|
---|
15 | - (BOOL)canFocusCell:(NSCell *)cell atTableColumn:(NSTableColumn *)tableColumn row:(int)row;
|
---|
16 | {
|
---|
17 | return NO;
|
---|
18 | }
|
---|
19 |
|
---|
20 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.