diff options
author | Jon Atack <jon@atack.com> | 2021-04-23 14:57:05 +0200 |
---|---|---|
committer | Jarol Rodriguez <jarolrod@tutanota.com> | 2021-05-26 17:35:11 -0400 |
commit | 6971e790c32253ecddb6108e796afd3892ced7fe (patch) | |
tree | 348a43bffd422522f350b616ad91770a007e1404 /src/qt/peertablemodel.h | |
parent | 5c041cb348e667672c8b5ed504dba05adf60783b (diff) |
gui: add Direction column to peers tab
Co-authored-by: Jarol Rodriguez <jarolrod@tutanota.com>
Diffstat (limited to 'src/qt/peertablemodel.h')
-rw-r--r-- | src/qt/peertablemodel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/peertablemodel.h b/src/qt/peertablemodel.h index 3d195342f1..f08f315324 100644 --- a/src/qt/peertablemodel.h +++ b/src/qt/peertablemodel.h @@ -47,6 +47,7 @@ public: enum ColumnIndex { NetNodeId = 0, Address, + Direction, ConnectionType, Network, Ping, @@ -81,6 +82,9 @@ private: /*: Title of Peers Table column which contains the IP/Onion/I2P address of the connected peer. */ tr("Address"), + /*: Title of Peers Table column which indicates the direction + the peer connection was initiated from. */ + tr("Direction"), /*: Title of Peers Table column which describes the type of peer connection. The "type" describes why the connection exists. */ tr("Type"), |