ui: Fixed displaying of truncated strings in the data inspector
This commit is contained in:
parent
0a97b59228
commit
6de00b3a6a
@ -400,7 +400,7 @@ namespace hex::plugin::builtin {
|
||||
|
||||
value = copyValue = hex::encodeByteString(stringBuffer);
|
||||
|
||||
if (currSelection->size > MaxStringLength) {
|
||||
if (value.size() > MaxStringLength) {
|
||||
value.resize(MaxStringLength);
|
||||
value += "...";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user