1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-06 09:17:07 +02:00

Disable default content for now

This commit is contained in:
Elias Steurer 2023-12-07 13:07:18 +01:00
parent 716397ce3a
commit 2d3ce9c5bf
2 changed files with 12 additions and 12 deletions

View File

@ -191,7 +191,7 @@ private:
bool m_checkWallpaperVisible { false };
bool m_silentStart { false };
bool m_anonymousTelemetry { true };
bool m_showDefaultContent { true };
bool m_showDefaultContent { false };
ScreenPlay::Video::FillMode m_videoFillMode { ScreenPlay::Video::FillMode::Cover };
ScreenPlay::Settings::Language m_language { Language::En_US };

View File

@ -63,18 +63,18 @@ Item {
}
}
SettingsHorizontalSeperator {
}
// SettingsHorizontalSeperator {
// }
SettingBool {
headline: qsTr("Show default installed content")
description: qsTr("ScreenPlay will show build in content.")
isChecked: App.settings.showDefaultContent
onCheckboxChanged: function (checked) {
App.settings.setShowDefaultContent(checked);
App.installedListModel.reset();
}
}
// SettingBool {
// headline: qsTr("Show default installed content")
// description: qsTr("ScreenPlay will show build in content.")
// isChecked: App.settings.showDefaultContent
// onCheckboxChanged: function (checked) {
// App.settings.setShowDefaultContent(checked);
// App.installedListModel.reset();
// }
// }
SettingsHorizontalSeperator {
}