fix(text_input): set read_only to false when focusing editable_input

This commit is contained in:
Michael Aaron Murphy 2024-06-27 15:48:06 +02:00
parent ff3e4423f9
commit 5c6fa840f4
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -2512,6 +2512,7 @@ impl State {
pub fn focus(&mut self) {
let now = Instant::now();
self.is_read_only = false;
self.is_focused = Some(Focus {
updated_at: now,
now,