This commit is contained in:
Simon Gardling
2023-03-24 09:49:54 -04:00
parent cce932400a
commit 592a67a304
6 changed files with 26 additions and 17 deletions

View File

@@ -115,7 +115,7 @@ impl FunctionManager {
);
// Only keep valid chars
new_string.retain(|c| crate::misc::is_valid_char(&c));
new_string.retain(|c| crate::misc::is_valid_char(c));
// If not fully open, return here as buttons cannot yet be displayed, therefore the user is inable to mark it for deletion
let animate_bool = ui.ctx().animate_bool(te_id, re.has_focus());