winemac: Tell Cocoa that we don't draw a focus ring for our views.
This seems to eliminate a lot of house-keeping work inside Cocoa.
This commit is contained in:
parent
c4708bca33
commit
b11d6850f2
|
@ -358,6 +358,11 @@ - (void) completeText:(NSString*)text
|
||||||
[[self inputContext] discardMarkedText];
|
[[self inputContext] discardMarkedText];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (NSFocusRingType) focusRingType
|
||||||
|
{
|
||||||
|
return NSFocusRingTypeNone;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ---------- NSTextInputClient methods ----------
|
* ---------- NSTextInputClient methods ----------
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue