diff options
author | Jon Atack <jon@atack.com> | 2021-04-23 15:08:37 +0200 |
---|---|---|
committer | Jarol Rodriguez <jarolrod@tutanota.com> | 2021-05-05 00:32:12 -0400 |
commit | 73a91c63ec72e62ef76fbc857baff14b099a1358 (patch) | |
tree | f3bd8dfce75d4d12e845722d37275f10917a797e /src/qt/rpcconsole.cpp | |
parent | 2448457cca1858c2fcf3dfcb53de3f388ea72079 (diff) |
gui: rename "Peer Id" to "Peer" in tab column and details area
to allow resizing the column more tightly
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r-- | src/qt/rpcconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 006f60e7a1..bb22bf6a4a 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -1023,7 +1023,7 @@ void RPCConsole::updateDetailWidget() const auto stats = selected_peers.first().data(PeerTableModel::StatsRole).value<CNodeCombinedStats*>(); // update the detail ui with latest node information QString peerAddrDetails(QString::fromStdString(stats->nodeStats.addrName) + " "); - peerAddrDetails += tr("(peer id: %1)").arg(QString::number(stats->nodeStats.nodeid)); + peerAddrDetails += tr("(peer: %1)").arg(QString::number(stats->nodeStats.nodeid)); if (!stats->nodeStats.addrLocal.empty()) peerAddrDetails += "<br />" + tr("via %1").arg(QString::fromStdString(stats->nodeStats.addrLocal)); ui->peerHeading->setText(peerAddrDetails); |