1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Remove some debug messages

This commit is contained in:
Joshua Goins 2023-07-30 10:48:50 -04:00
parent f7489974c1
commit dd1f22ab31
2 changed files with 6 additions and 8 deletions

View file

@ -103,11 +103,10 @@ public:
void setSSL(QNetworkRequest &request); void setSSL(QNetworkRequest &request);
void readInitialInformation(); void readInitialInformation();
SapphireLauncher *sapphireLauncher; SapphireLauncher *sapphireLauncher = nullptr;
SquareBoot *squareBoot; SquareBoot *squareBoot = nullptr;
SquareLauncher *squareLauncher; SquareLauncher *squareLauncher = nullptr;
AssetUpdater *assetUpdater; Watchdog *watchdog = nullptr;
Watchdog *watchdog;
bool gamescopeAvailable = false; bool gamescopeAvailable = false;
bool gamemodeAvailable = false; bool gamemodeAvailable = false;

View file

@ -23,7 +23,6 @@ Controls.Control {
function onNewsChanged() { function onNewsChanged() {
page.currentBannerIndex = 0 page.currentBannerIndex = 0
page.numBannerImages = LauncherCore.headline.banners.length page.numBannerImages = LauncherCore.headline.banners.length
console.log(LauncherCore.headline.banners)
} }
} }
@ -81,7 +80,7 @@ Controls.Control {
} }
Repeater { Repeater {
model: LauncherCore.headline.news model: LauncherCore.headline !== null ? LauncherCore.headline.news : undefined
MobileForm.FormButtonDelegate { MobileForm.FormButtonDelegate {
text: modelData.title text: modelData.title
@ -104,7 +103,7 @@ Controls.Control {
} }
Repeater { Repeater {
model: LauncherCore.headline.topics model: LauncherCore.headline !== null ? LauncherCore.headline.topics : undefined
MobileForm.FormButtonDelegate { MobileForm.FormButtonDelegate {
text: modelData.title text: modelData.title