From f08132475dc94214c6deda42add8bb4360220ea6 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Sat, 25 Mar 2023 02:01:03 +0800 Subject: [PATCH] cabana: align signal value vcenter (#27675) --- tools/cabana/historylog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cabana/historylog.cc b/tools/cabana/historylog.cc index 3e80a6a697..4ebe8e0473 100644 --- a/tools/cabana/historylog.cc +++ b/tools/cabana/historylog.cc @@ -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 {}; }