1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

fix (spinbox): doubling characters entered from the keyboard (#4190)

This commit is contained in:
Oleg Belousov 2023-05-01 12:11:56 +03:00 committed by GitHub
parent 7345e62355
commit 203e7fc97d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -434,9 +434,6 @@ static void lv_spinbox_event(const lv_obj_class_t * class_p, lv_event_t * e)
else if(c == LV_KEY_DOWN) {
lv_spinbox_decrement(obj);
}
else {
lv_textarea_add_char(obj, c);
}
}
}