mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-21 18:55:16 +00:00
change KeyboardMode from Numeric to ASCII
This commit is contained in:
parent
dd4f3202ae
commit
ce5b799593
1 changed files with 1 additions and 2 deletions
|
@ -297,8 +297,7 @@ bool Client::openKeyboardIP() {
|
|||
// opens swkbd with the initial text set to the last saved IP
|
||||
sInstance->mKeyboard->openKeyboard(
|
||||
sInstance->mServerIP.cstr(), [](nn::swkbd::KeyboardConfig& config) {
|
||||
config.keyboardMode = nn::swkbd::KeyboardMode::ModeNumeric;
|
||||
config.leftOptionalSymbolKey = '.';
|
||||
config.keyboardMode = nn::swkbd::KeyboardMode::ModeASCII;
|
||||
config.textMaxLength = MAX_HOSTNAME_LENGTH;
|
||||
config.textMinLength = 1;
|
||||
config.isUseUtf8 = true;
|
||||
|
|
Loading…
Reference in a new issue