cabana: align signal value vcenter (#27675)

old-commit-hash: f08132475dc94214c6deda42add8bb4360220ea6
This commit is contained in:
Dean Lee
2023-03-25 02:01:03 +08:00
committed by GitHub
parent b6897bce1a
commit 9e0df8b2ed
+1 -1
View File
@@ -21,7 +21,7 @@ QVariant HistoryLogModel::data(const QModelIndex &index, int role) const {
} else if (role == BytesRole) {
return m.data;
} else if (role == Qt::TextAlignmentRole) {
return Qt::AlignRight;
return (uint32_t)(Qt::AlignRight | Qt::AlignVCenter);
}
return {};
}