Register text input handlers via new element hook

Provide element bounds to the input handler's `bounds_for_rect` method.

Co-authored-by: Marshall <marshall@zed.dev>
This commit is contained in:
Max Brunsfeld 2023-11-08 15:48:55 -08:00
parent d273fa6dd0
commit 1a37d9edc6
7 changed files with 160 additions and 66 deletions

View file

@ -1484,10 +1484,10 @@ extern "C" fn first_rect_for_character_range(
|bounds| {
NSRect::new(
NSPoint::new(
frame.origin.x + bounds.origin.x as f64,
frame.origin.y + frame.size.height - bounds.origin.y as f64,
frame.origin.x + bounds.origin.x.0 as f64,
frame.origin.y + frame.size.height - bounds.origin.y.0 as f64,
),
NSSize::new(bounds.size.width as f64, bounds.size.height as f64),
NSSize::new(bounds.size.width.0 as f64, bounds.size.height.0 as f64),
)
},
)