From d160828cdaf4b852dc325b95d24cc71812116fe2 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Sun, 12 Dec 2021 18:24:39 +0100 Subject: SettingsWallet, SettingsListItem: disable "Rescan wallet balance" buton if wallet is not synced --- components/SettingsListItem.qml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'components') diff --git a/components/SettingsListItem.qml b/components/SettingsListItem.qml index bbf42a88..d6a10ca6 100644 --- a/components/SettingsListItem.qml +++ b/components/SettingsListItem.qml @@ -10,6 +10,7 @@ ColumnLayout { property alias description: area.text property alias title: header.text property bool isLast: false + property bool enabled: true signal clicked() Layout.fillWidth: true @@ -37,6 +38,7 @@ ColumnLayout { width: parent.width height: header.height + area.contentHeight color: "transparent"; + opacity: settingsListItem.enabled ? 1 : 0.25 anchors.left: parent.left anchors.bottomMargin: 4 anchors.topMargin: 4 @@ -102,6 +104,7 @@ ColumnLayout { } MouseArea { + visible: settingsListItem.enabled cursorShape: Qt.PointingHandCursor anchors.fill: parent hoverEnabled: true -- cgit v1.2.3