We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3965cd0 commit f518fe7Copy full SHA for f518fe7
1 file changed
src/ui/input/info/BagInfoWidget.cpp
@@ -110,6 +110,9 @@ BagInfoWidget::populateTreeWidget()
110
auto* const topicMessageCountItem = new QTreeWidgetItem(topicInformationItem);
111
topicMessageCountItem->setText(COL_DESCRIPTION, "Message Count:");
112
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));
116
}
117
118
treeWidgetItems.append(topicMetaDataItem);
0 commit comments