mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
Settings -> Info -> Copy to clipboard #3063
This commit is contained in:
parent
e65159163d
commit
370607a7dc
1 changed files with 2 additions and 2 deletions
|
@ -393,13 +393,13 @@ Rectangle {
|
||||||
data += "\nEmbedded Monero version: " + moneroVersion;
|
data += "\nEmbedded Monero version: " + moneroVersion;
|
||||||
data += "\nWallet path: " + walletLocation.walletPath;
|
data += "\nWallet path: " + walletLocation.walletPath;
|
||||||
|
|
||||||
data += "\nWallet creation height: ";
|
data += "\nWallet restore height: ";
|
||||||
if(currentWallet)
|
if(currentWallet)
|
||||||
data += currentWallet.walletCreationHeight;
|
data += currentWallet.walletCreationHeight;
|
||||||
|
|
||||||
data += "\nWallet log path: " + walletLogPath;
|
data += "\nWallet log path: " + walletLogPath;
|
||||||
data += "\nWallet mode: " + walletModeString;
|
data += "\nWallet mode: " + walletModeString;
|
||||||
data += "\nGraphics: " + isOpenGL ? "OpenGL" : "Low graphics mode";
|
data += "\nGraphics mode: " + isOpenGL ? "OpenGL" : "Low graphics mode";
|
||||||
|
|
||||||
console.log("Copied to clipboard");
|
console.log("Copied to clipboard");
|
||||||
clipboard.setText(data);
|
clipboard.setText(data);
|
||||||
|
|
Loading…
Reference in a new issue