1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-09 20:11:48 +00:00

fixed submodule remote

This commit is contained in:
flb 2021-02-06 21:08:51 +01:00
parent aed5b64540
commit a8539cc20f

View file

@ -95,6 +95,16 @@ ListDownloadTab::ListDownloadTab(archiveType type) :
} }
else{
notFound = new brls::Label(
brls::LabelStyle::DESCRIPTION,
"menus/list_could_done"_i18n ,
true
);
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
this->addView(notFound);
}
if(type == cheats){ if(type == cheats){
cheatSlipLabel = new brls::Label( cheatSlipLabel = new brls::Label(
brls::LabelStyle::DESCRIPTION, brls::LabelStyle::DESCRIPTION,
@ -158,16 +168,6 @@ ListDownloadTab::ListDownloadTab(archiveType type) :
this->addView(cheatslipsItem); this->addView(cheatslipsItem);
} }
else{
notFound = new brls::Label(
brls::LabelStyle::DESCRIPTION,
"menus/list_could_done"_i18n ,
true
);
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
this->addView(notFound);
}
} }
ListDownloadTab::~ListDownloadTab(){ ListDownloadTab::~ListDownloadTab(){