1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00: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 @@ - (void) setMarkedText: (id) string
- (NSRect) firstRectForCharacterRange: (NSRange) range
actualRange: (nullable NSRangePointer) actualRange
{
return NSZeroRect;
return [self firstRectForCharacterRange: range];
}
#endif /* NS_IMPL_COCOA */