volshell: inform user that value displayed is only an offset for types like embedded structs

This commit is contained in:
eve
2025-04-03 16:38:55 +01:00
parent bb2f28a39e
commit b1c1645657
+1 -1
View File
@@ -622,7 +622,7 @@ class Volshell(interfaces.plugins.PluginInterface):
elif isinstance(value, objects.Array):
return repr([self._display_value(val) for val in value])
else:
return hex(value.vol.offset)
return f"offset: {hex(value.vol.offset)}"
else:
# non volobject
if value is None: