Files
zesdex/src/app/mode/key_input.rs
T

7 lines
166 B
Rust
Raw Normal View History

use crate::app::state::rest::AppStateRest;
pub fn handle_key_text(state: &mut AppStateRest, text: String) {
state.input.buffer = text;
state.dirty = true;
}