Prevent bound keys from reaching the terminal

This commit is contained in:
Mattias Eriksson 2024-02-14 08:42:54 +01:00 committed by Jeremy Soller
parent bb33a616dd
commit b8cbdb9760
2 changed files with 19 additions and 5 deletions

View file

@ -1099,10 +1099,7 @@ impl Application for App {
};
app.set_curr_font_weights_and_stretches();
let command = Command::batch([
app.update_config(),
app.update_title(None)
]);
let command = Command::batch([app.update_config(), app.update_title(None)]);
(app, command)
}