summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/can
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2023-02-02 18:08:21 +0100
committerIvan Solovev <ivan.solovev@qt.io>2023-02-02 19:00:57 +0100
commitc05f843230069cb4b1670ee0e7efd88fcb1cb54b (patch)
tree9b483712bb49fc09dce87761c278aba850459941 /examples/serialbus/can
parent52a1d4a86557d47a74da034df652441644c5a759 (diff)
CAN Example: increase the default size of the Flags column
... so that the column name actually fits into it. Task-number: QTBUG-110890 Pick-to: 6.5 Change-Id: Idc88f4fa0064bd52331a9142ba99c42af7429057 Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'examples/serialbus/can')
-rw-r--r--examples/serialbus/can/receivedframesmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/serialbus/can/receivedframesmodel.cpp b/examples/serialbus/can/receivedframesmodel.cpp
index ca8ab9e..efd5df2 100644
--- a/examples/serialbus/can/receivedframesmodel.cpp
+++ b/examples/serialbus/can/receivedframesmodel.cpp
@@ -59,7 +59,7 @@ QVariant ReceivedFramesModel::headerData(int section, Qt::Orientation orientatio
case Timestamp:
return QSize(130, 25);
case Flags:
- return QSize(25, 25);
+ return QSize(50, 25);
case CanID:
return QSize(50, 25);
case DLC: