1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 23:10:47 -08:00

NS: Fix placement of candidate window (bug#72422)

* src/nsterm.m ([EmacsView firstRectForCharacterRange:actualRange:]):
Call method of NSTextInput.
This commit is contained in:
Gerd Möllmann 2024-08-03 10:29:24 +02:00
parent 94fe5894d9
commit e539a5c7d7

View file

@ -7064,7 +7064,7 @@ ns_create_font_panel_buttons (id target, SEL select, SEL cancel_action)
- (NSRect) firstRectForCharacterRange: (NSRange) range
actualRange: (nullable NSRangePointer) actualRange
{
return NSZeroRect;
return [self firstRectForCharacterRange: range];
}
#endif /* NS_IMPL_COCOA */