diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-02-25 14:42:06 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-02-25 14:42:06 -0600 |
| commit | 42103432b79bb52b254531a77d93f26007e1cc42 (patch) | |
| tree | 63c825e1ef4f017d9a35408c52c8f83687af1fa6 | |
| parent | 842fe0d5f78b31bbef841c66996076609684be8f (diff) | |
| parent | 891ea158dc20c7da0ca4148702fb3f43a137593b (diff) | |
| download | monzero-gui-42103432b79bb52b254531a77d93f26007e1cc42.tar.gz monzero-gui-42103432b79bb52b254531a77d93f26007e1cc42.tar.xz monzero-gui-42103432b79bb52b254531a77d93f26007e1cc42.zip | |
Merge pull request #1970
891ea15 SettingsWallet: hide creating a view wallet for viewOnly wallets (mmbyday)
| -rw-r--r-- | pages/settings/SettingsWallet.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 0293c931..29a1b5ff 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -131,6 +131,7 @@ Rectangle { Layout.fillWidth: true Layout.preferredHeight: settingsWallet.itemHeight columnSpacing: 0 + visible: !appWindow.viewOnly ColumnLayout { Layout.fillWidth: true @@ -184,6 +185,7 @@ Rectangle { Rectangle { // divider + visible: !appWindow.viewOnly Layout.preferredHeight: 1 * scaleRatio Layout.fillWidth: true Layout.topMargin: 8 * scaleRatio |
