diff --git a/share/qtcreator/dumper/dumper.py b/share/qtcreator/dumper/dumper.py index 25c09a34f6a..f0b03c10d5d 100644 --- a/share/qtcreator/dumper/dumper.py +++ b/share/qtcreator/dumper/dumper.py @@ -1979,6 +1979,8 @@ class PlainDumper: lister = getattr(printer, "children", None) children = [] if lister is None else list(lister()) d.putType(self.printer.name) + val = printer.to_string().encode("hex") + d.putValue(val, Hex2EncodedLatin1) d.putValue(printer.to_string()) d.putNumChild(len(children)) if d.isExpanded():