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:
Ken Thomases 2013-10-31 15:00:13 -05:00 committed by Alexandre Julliard
parent c4708bca33
commit b11d6850f2

View file

@ -358,6 +358,11 @@ - (void) completeText:(NSString*)text
[[self inputContext] discardMarkedText];
}
- (NSFocusRingType) focusRingType
{
return NSFocusRingTypeNone;
}
/*
* ---------- NSTextInputClient methods ----------
*/