diff options
| author | 2022-07-27 15:53:32 -0400 | |
|---|---|---|
| committer | 2022-07-27 15:53:32 -0400 | |
| commit | a761d020c61de5a1d354ad9721a66f4c4c9b1e2e (patch) | |
| tree | a605f15828de48138474bf3a4df46afb52cadc13 /src/core/frontend | |
| parent | Merge pull request #8592 from devsnek/sig-handlers (diff) | |
| parent | qt_software_keyboard: Fix infinite loop when moving between buttons (diff) | |
| download | yuzu-a761d020c61de5a1d354ad9721a66f4c4c9b1e2e.tar.gz yuzu-a761d020c61de5a1d354ad9721a66f4c4c9b1e2e.tar.xz yuzu-a761d020c61de5a1d354ad9721a66f4c4c9b1e2e.zip | |
Merge pull request #8633 from Morph1984/optional-keys
applet/swkbd: Implement optional symbol keys
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 { | |||
| 17 | std::u16string sub_text; | 17 | std::u16string sub_text; |
| 18 | std::u16string guide_text; | 18 | std::u16string guide_text; |
| 19 | std::u16string initial_text; | 19 | std::u16string initial_text; |
| 20 | char16_t left_optional_symbol_key; | ||
| 21 | char16_t right_optional_symbol_key; | ||
| 20 | u32 max_text_length; | 22 | u32 max_text_length; |
| 21 | u32 min_text_length; | 23 | u32 min_text_length; |
| 22 | s32 initial_cursor_position; | 24 | s32 initial_cursor_position; |