Skip to content

Commit e14d79f

Browse files
committed
gui: center-align the entries in the peers tab "Peer" column
This aligns them under the column header.
1 parent b12165b commit e14d79f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/peertablemodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ QVariant PeerTableModel::data(const QModelIndex &index, int role) const
179179
assert(false);
180180
} else if (role == Qt::TextAlignmentRole) {
181181
switch (column) {
182-
case NetNodeId:
183182
case Address:
184183
return {};
184+
case NetNodeId:
185185
case ConnectionType:
186186
case Network:
187187
return QVariant(Qt::AlignCenter);

0 commit comments

Comments
 (0)