diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-09-07 15:19:59 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-09-07 15:19:59 -0500 |
| commit | a000b8d8501d76555ed07fba080527dc1e5d9a72 (patch) | |
| tree | 2d846b15231cd22c68b2db1adca7159cd90942b6 | |
| parent | 4b626924e674b4a17c33e4f0be0da78b7e5840a7 (diff) | |
| parent | 370607a7dc059d59ca3a8182ae2bb48eb0adcdd0 (diff) | |
| download | monzero-gui-a000b8d8501d76555ed07fba080527dc1e5d9a72.tar.gz monzero-gui-a000b8d8501d76555ed07fba080527dc1e5d9a72.tar.xz monzero-gui-a000b8d8501d76555ed07fba080527dc1e5d9a72.zip | |
Merge pull request #3064
370607a Settings -> Info -> Copy to clipboard #3063 (xmrdsc)
| -rw-r--r-- | pages/settings/SettingsInfo.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/settings/SettingsInfo.qml b/pages/settings/SettingsInfo.qml index 6faf582a..22b91820 100644 --- a/pages/settings/SettingsInfo.qml +++ b/pages/settings/SettingsInfo.qml @@ -393,13 +393,13 @@ Rectangle { data += "\nEmbedded Monero version: " + moneroVersion; data += "\nWallet path: " + walletLocation.walletPath; - data += "\nWallet creation height: "; + data += "\nWallet restore height: "; if(currentWallet) data += currentWallet.walletCreationHeight; data += "\nWallet log path: " + walletLogPath; data += "\nWallet mode: " + walletModeString; - data += "\nGraphics: " + isOpenGL ? "OpenGL" : "Low graphics mode"; + data += "\nGraphics mode: " + isOpenGL ? "OpenGL" : "Low graphics mode"; console.log("Copied to clipboard"); clipboard.setText(data); |
