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:
parent
f7489974c1
commit
dd1f22ab31
2 changed files with 6 additions and 8 deletions
|
@ -103,11 +103,10 @@ public:
|
|||
void setSSL(QNetworkRequest &request);
|
||||
void readInitialInformation();
|
||||
|
||||
SapphireLauncher *sapphireLauncher;
|
||||
SquareBoot *squareBoot;
|
||||
SquareLauncher *squareLauncher;
|
||||
AssetUpdater *assetUpdater;
|
||||
Watchdog *watchdog;
|
||||
SapphireLauncher *sapphireLauncher = nullptr;
|
||||
SquareBoot *squareBoot = nullptr;
|
||||
SquareLauncher *squareLauncher = nullptr;
|
||||
Watchdog *watchdog = nullptr;
|
||||
|
||||
bool gamescopeAvailable = false;
|
||||
bool gamemodeAvailable = false;
|
||||
|
|
|
@ -23,7 +23,6 @@ Controls.Control {
|
|||
function onNewsChanged() {
|
||||
page.currentBannerIndex = 0
|
||||
page.numBannerImages = LauncherCore.headline.banners.length
|
||||
console.log(LauncherCore.headline.banners)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -81,7 +80,7 @@ Controls.Control {
|
|||
}
|
||||
|
||||
Repeater {
|
||||
model: LauncherCore.headline.news
|
||||
model: LauncherCore.headline !== null ? LauncherCore.headline.news : undefined
|
||||
|
||||
MobileForm.FormButtonDelegate {
|
||||
text: modelData.title
|
||||
|
@ -104,7 +103,7 @@ Controls.Control {
|
|||
}
|
||||
|
||||
Repeater {
|
||||
model: LauncherCore.headline.topics
|
||||
model: LauncherCore.headline !== null ? LauncherCore.headline.topics : undefined
|
||||
|
||||
MobileForm.FormButtonDelegate {
|
||||
text: modelData.title
|
||||
|
|
Loading…
Add table
Reference in a new issue