Skip to content

Commit 729e7b3

Browse files
committed
GUI/Peers: Drop redundant Network column
Network addresses already very obviously imply a specific network, so naming the network separately just wastes space
1 parent 42af959 commit 729e7b3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/qt/peertablemodel.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ class PeerTableModel : public QAbstractTableModel
4949
NetNodeId = 0,
5050
Address,
5151
ConnectionType,
52-
Network,
5352
Ping,
5453
Sent,
5554
Received,
56-
Subversion
55+
Subversion,
56+
Network, // Not used, just kept at the end to avoid excessive code removal
5757
};
5858

5959
enum {
@@ -87,9 +87,6 @@ public Q_SLOTS:
8787
/*: Title of Peers Table column which describes the type of
8888
peer connection. The "type" describes why the connection exists. */
8989
tr("Type"),
90-
/*: Title of Peers Table column which states the network the peer
91-
connected through. */
92-
tr("Network"),
9390
/*: Title of Peers Table column which indicates the current latency
9491
of the connection with the peer. */
9592
tr("Ping"),

0 commit comments

Comments
 (0)