Skip to content

Commit f518fe7

Browse files
author
Fleury
committed
[feature][UI] Bag info tool now shows serialization format for each topic
1 parent 3965cd0 commit f518fe7

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/ui/input/info/BagInfoWidget.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ BagInfoWidget::populateTreeWidget()
110110
auto* const topicMessageCountItem = new QTreeWidgetItem(topicInformationItem);
111111
topicMessageCountItem->setText(COL_DESCRIPTION, "Message Count:");
112112
topicMessageCountItem->setText(COL_INFORMATION, QString::number(topicInformation.message_count));
113+
auto* const serializationFormatItem = new QTreeWidgetItem(topicInformationItem);
114+
serializationFormatItem->setText(COL_DESCRIPTION, "Serialization Format:");
115+
serializationFormatItem->setText(COL_INFORMATION, QString::fromStdString(topicMetaData.serialization_format));
113116
}
114117

115118
treeWidgetItems.append(topicMetaDataItem);

0 commit comments

Comments
 (0)