diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-24 07:21:02 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-24 07:21:02 -0400 |
commit | bee823db3a4c464cea910c7db7f208ab7f64030f (patch) | |
tree | 302c3784cebbe6851049baafd4d8f615b872f100 /src/core/frontend | |
parent | 97729fd8e9c2f8cabc626ab03a666c9428e01c5e (diff) |
applet/swkbd: Implement optional symbol keys
These are only used in the numeric keyboard, and correspond to the keys to the left and right of the "0" key on the numeric keyboard.
Diffstat (limited to 'src/core/frontend')
-rw-r--r-- | src/core/frontend/applets/software_keyboard.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/frontend/applets/software_keyboard.h b/src/core/frontend/applets/software_keyboard.h index a405e3c94..094d1e713 100644 --- a/src/core/frontend/applets/software_keyboard.h +++ b/src/core/frontend/applets/software_keyboard.h @@ -17,6 +17,8 @@ struct KeyboardInitializeParameters { std::u16string sub_text; std::u16string guide_text; std::u16string initial_text; + char16_t left_optional_symbol_key; + char16_t right_optional_symbol_key; u32 max_text_length; u32 min_text_length; s32 initial_cursor_position; |