mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
Fix responder on backward tabbing
This commit is contained in:
parent
1355516e6a
commit
2d33c80489
|
@ -954,7 +954,9 @@ static int8_t sSharpAcc[] = {
|
|||
NSWindow * win = [self window];
|
||||
NSResponder * hasResponder = [win firstResponder];
|
||||
if ([self editTarget])
|
||||
if (hasResponder != [win fieldEditor:NO forObject:nil])
|
||||
if (hasResponder != [win fieldEditor:NO forObject:nil]
|
||||
|| [hasResponder delegate] != fFieldEditor
|
||||
)
|
||||
[win makeFirstResponder:fFieldEditor];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user