aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2018-10-06 00:05:51 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2018-10-08 13:33:29 +0300
commit2ab9140c92c7ffd950f9ea6e1e78107a217bb336 (patch)
treeb1de1da187cb3828e3c09e6cdf6afac5679e0f00 /src/qt/rpcconsole.cpp
parent3045704502e8a241b60b847fd52fcbed3129a2e4 (diff)
downloadbitcoin-2ab9140c92c7ffd950f9ea6e1e78107a217bb336.tar.xz
Add tooltips for both datadir and blocksdir
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r--src/qt/rpcconsole.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 5bf9893141..7ec4feabfb 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -459,6 +459,9 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
move(QApplication::desktop()->availableGeometry().center() - frameGeometry().center());
}
+ QChar nonbreaking_hyphen(8209);
+ ui->dataDir->setToolTip(ui->dataDir->toolTip().arg(QString(nonbreaking_hyphen) + "datadir"));
+ ui->blocksDir->setToolTip(ui->blocksDir->toolTip().arg(QString(nonbreaking_hyphen) + "blocksdir"));
ui->openDebugLogfileButton->setToolTip(ui->openDebugLogfileButton->toolTip().arg(tr(PACKAGE_NAME)));
if (platformStyle->getImagesOnButtons()) {