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/yuzu/applets/qt_software_keyboard.h | |
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/yuzu/applets/qt_software_keyboard.h')
-rw-r--r-- | src/yuzu/applets/qt_software_keyboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/qt_software_keyboard.h b/src/yuzu/applets/qt_software_keyboard.h index 1c489fbb6..35d4ee2ef 100644 --- a/src/yuzu/applets/qt_software_keyboard.h +++ b/src/yuzu/applets/qt_software_keyboard.h @@ -211,7 +211,7 @@ private: std::array<std::array<QPushButton*, NUM_COLUMNS_NUMPAD>, NUM_ROWS_NUMPAD> numberpad_buttons; // Contains a set of all buttons used in keyboard_buttons and numberpad_buttons. - std::array<QPushButton*, 110> all_buttons; + std::array<QPushButton*, 112> all_buttons; std::size_t row{0}; std::size_t column{0}; |