From 539d7ce16a241939c9044bb29e71ff6b5e36a3ba Mon Sep 17 00:00:00 2001 From: Niels Date: Thu, 29 May 2025 09:06:35 +0200 Subject: [PATCH] Small tests --- qml/harbour-allradio.qml | 2 +- qml/items/Splash.qml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/qml/harbour-allradio.qml b/qml/harbour-allradio.qml index 3d518eb..f8d4dc2 100644 --- a/qml/harbour-allradio.qml +++ b/qml/harbour-allradio.qml @@ -13,7 +13,7 @@ import "helpers" ApplicationWindow { id: allRadio - property string _version: Qt.application.version + property string _version: "2.0.10" property string _language: Qt.locale().name.slice(0,2) property string _country: Qt.locale().name.slice(-2) property int sleepTime: 0 diff --git a/qml/items/Splash.qml b/qml/items/Splash.qml index a06fb6f..2300352 100644 --- a/qml/items/Splash.qml +++ b/qml/items/Splash.qml @@ -21,6 +21,11 @@ Column { source: parent color: Theme.highlightColor } + // BusyIndicator { + // size: BusyIndicatorSize.Large + // anchors.centerIn: parent + // running: parent.visible + // } } Label { @@ -38,4 +43,5 @@ Column { color: Theme.highlightColor anchors.horizontalCenter: parent.horizontalCenter } + }