diff --git a/qrenderdoc/Widgets/AnnotationDisplay.cpp b/qrenderdoc/Widgets/AnnotationDisplay.cpp index cb48d4019..4c95f9216 100644 --- a/qrenderdoc/Widgets/AnnotationDisplay.cpp +++ b/qrenderdoc/Widgets/AnnotationDisplay.cpp @@ -194,6 +194,8 @@ void AnnotationDisplay::addStructuredChildren(RDTreeWidgetItem *parent, const SD if(obj->type.basetype == SDBasic::Chunk || obj->type.basetype == SDBasic::Struct || obj->type.basetype == SDBasic::Array) addStructuredChildren(item, *obj); + else if(obj->type.basetype == SDBasic::String) + item->setText(1, QString(obj->data.str)); else item->setText(1, SDObject2Variant(obj, false));