1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 13:33:39 +01: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){
cheatSlipLabel = new brls::Label(
brls::LabelStyle::DESCRIPTION,
@ -158,16 +168,6 @@ ListDownloadTab::ListDownloadTab(archiveType type) :
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(){