From 772e697fed5488a5e726c7848ea5676a846e5f84 Mon Sep 17 00:00:00 2001 From: Remi Palandri Date: Tue, 20 Jan 2026 12:07:24 +0100 Subject: [PATCH] Allows more than 3 lines per annotation to be shown --- qrenderdoc/Widgets/AnnotationDisplay.cpp | 2 ++ 1 file changed, 2 insertions(+) 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));