| 234 | } |
| 235 | |
| 236 | static void VirtualKeyboard_Backspace(void) { |
| 237 | if (kb_str.length) kb_str.length--; |
| 238 | Event_RaiseString(&InputEvents.TextChanged, &kb_str); |
| 239 | KB_MarkDirty(); |
| 240 | } |
| 241 | |
| 242 | static void VirtualKeyboard_ClickSelected(void) { |
| 243 | int selected = VirtualKeyboard_GetSelected(); |
no test coverage detected