Update modalkit and modalkit-ratatui to SHA 45855daeeb (#358)

This commit is contained in:
Jihyeon Kim (김지현) 2025-05-16 12:09:12 +09:00 committed by GitHub
parent ebd89423e9
commit 6e923f3878
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 455 additions and 106 deletions

View file

@ -310,7 +310,7 @@ impl Application {
}
term.draw(|f| {
let area = f.size();
let area = f.area();
let modestr = bindings.show_mode();
let cursor = bindings.get_cursor_indicator();
@ -339,7 +339,7 @@ impl Application {
let inner = Rect::new(cx, cy, 1, 1);
f.render_widget(para, inner)
}
f.set_cursor(cx, cy);
f.set_cursor_position((cx, cy));
}
})?;