diff --git a/.github/workflows/build-and-create-release.yml b/.github/workflows/build-and-create-release.yml index 775c84b..705c474 100644 --- a/.github/workflows/build-and-create-release.yml +++ b/.github/workflows/build-and-create-release.yml @@ -87,7 +87,7 @@ jobs: name: rpm-build-result - name: Create a release id: release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: '*.rpm' draft: false diff --git a/qml/pages/GetDataPage.qml b/qml/pages/GetDataPage.qml index 6e76026..2d66574 100644 --- a/qml/pages/GetDataPage.qml +++ b/qml/pages/GetDataPage.qml @@ -63,6 +63,7 @@ Page { contentHeight: column.height PullDownMenu { + id: pdMenu visible: fetchAllSwitch.checked || (pickedHour !== -1 && pickedMinute !== -1) MenuItem { text: "Fetch data" @@ -202,6 +203,7 @@ Page { color: Theme.highlightColor anchors.horizontalCenter: parent.horizontalCenter anchors.top: parent.top + anchors.topMargin: Theme.paddingLarge } Text { @@ -221,6 +223,7 @@ Page { onClicked: { failureOverlay.visible = false; column.visible = true; + pdMenu.visible = true; } } } @@ -272,6 +275,7 @@ Page { loadingScreen.running = false; failureOverlay.visible = true; column.visible = false; + pdMenu.visible = false; failureText.text = data[1] } }