File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -321,6 +321,7 @@ namespace ul::menu::ui {
321321 SwkbdConfig swkbd;
322322 UL_RC_ASSERT (swkbdCreate (&swkbd, 0 ));
323323 swkbdConfigMakePresetDefault (&swkbd);
324+ swkbdConfigSetType (&swkbd, SwkbdType_All);
324325 swkbdConfigSetGuideText (&swkbd, GetLanguageString (" swkbd_folder_name_guide" ).c_str ());
325326 char new_folder_name_buf[500 ] = {};
326327 const auto rc = ShowSwkbd (&swkbd, new_folder_name_buf, sizeof (new_folder_name_buf));
@@ -378,6 +379,7 @@ namespace ul::menu::ui {
378379 SwkbdConfig swkbd;
379380 UL_RC_ASSERT (swkbdCreate (&swkbd, 0 ));
380381 swkbdConfigMakePresetDefault (&swkbd);
382+ swkbdConfigSetType (&swkbd, SwkbdType_All);
381383 swkbdConfigSetInitialText (&swkbd, cur_entry.folder_info .name );
382384 swkbdConfigSetGuideText (&swkbd, GetLanguageString (" swkbd_folder_name_guide" ).c_str ());
383385 char new_folder_name[500 ] = {};
Original file line number Diff line number Diff line change @@ -457,6 +457,7 @@ namespace ul::menu::ui {
457457 SwkbdConfig swkbd;
458458 if (R_SUCCEEDED (swkbdCreate (&swkbd, 0 ))) {
459459 swkbdConfigMakePresetDefault (&swkbd);
460+ swkbdConfigSetType (&swkbd, SwkbdType_All);
460461 swkbdConfigSetGuideText (&swkbd, GetLanguageString (" swkbd_console_nick_guide" ).c_str ());
461462 swkbdConfigSetInitialText (&swkbd, g_GlobalSettings.nickname .nickname );
462463 swkbdConfigSetStringLenMax (&swkbd, 32 );
You can’t perform that action at this time.
0 commit comments