mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
fixed options page jump
This commit is contained in:
parent
7085cc79ac
commit
78cc891c97
@ -37,9 +37,9 @@ Third, "make clean".
|
||||
This is a work in progress and lets you build with new libnx, plutonium packages. Some stuff still needs fixed to work with the new plutonium and libnx changes.
|
||||
|
||||
## Stuff still to fix
|
||||
~~Font sizes in menus.~~ \
|
||||
~~Threading in the main menu - to stop GUI freezing or Network installs failing.~~ \
|
||||
Options page - stop jumping back to top of page after something is selected.\
|
||||
~~Font sizes in menus.~~ Fixed \
|
||||
~~Threading in the main menu - to stop GUI freezing or Network installs failing.~~ Fixed \
|
||||
~~Options page - stop jumping back to top of page after something is selected.~~ Fixed \
|
||||
Touchscreen not working properly.\
|
||||
Crash when pressing A or + in the network install page.
|
||||
|
||||
|
@ -190,6 +190,7 @@ namespace inst::ui {
|
||||
inst::config::ignoreReqVers = !inst::config::ignoreReqVers;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(0);
|
||||
break;
|
||||
case 1:
|
||||
if (inst::config::validateNCAs) {
|
||||
@ -197,21 +198,25 @@ namespace inst::ui {
|
||||
} else inst::config::validateNCAs = true;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(1);
|
||||
break;
|
||||
case 2:
|
||||
inst::config::overClock = !inst::config::overClock;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(2);
|
||||
break;
|
||||
case 3:
|
||||
inst::config::deletePrompt = !inst::config::deletePrompt;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(3);
|
||||
break;
|
||||
case 4:
|
||||
inst::config::autoUpdate = !inst::config::autoUpdate;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(4);
|
||||
break;
|
||||
case 5:
|
||||
if (inst::config::gayMode) {
|
||||
@ -224,6 +229,7 @@ namespace inst::ui {
|
||||
mainApp->mainPage->awooImage->SetVisible(true);
|
||||
}
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(5);
|
||||
thememessage();
|
||||
inst::config::setConfig();
|
||||
break;
|
||||
@ -236,6 +242,7 @@ namespace inst::ui {
|
||||
inst::config::useSound = true;
|
||||
}
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(6);
|
||||
inst::config::setConfig();
|
||||
break;
|
||||
|
||||
@ -248,6 +255,7 @@ namespace inst::ui {
|
||||
inst::config::sigPatchesUrl = keyboardResult;
|
||||
inst::config::setConfig();
|
||||
this->setMenuText();
|
||||
this->menu->SetSelectedIndex(8);
|
||||
}
|
||||
break;
|
||||
case 9:
|
||||
|
Loading…
x
Reference in New Issue
Block a user