1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 19:41:49 +00:00

removed popupframe hint

This commit is contained in:
flb 2021-02-09 16:43:03 +01:00
parent afd745f68b
commit 4415f308e5

View file

@ -195,6 +195,9 @@ void DownloadCheatsPage::ShowCheatsContent(nlohmann::ordered_json titles) {
brls::ListItem* listItem; brls::ListItem* listItem;
for(auto& p : titles){ for(auto& p : titles){
listItem = new brls::ListItem(p.get<std::string>()); listItem = new brls::ListItem(p.get<std::string>());
listItem->registerAction("", brls::Key::A, [this] {
return true;
});
list->addView(listItem); list->addView(listItem);
} }
appView->setContentView(list); appView->setContentView(list);