mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
ui: Fixed displaying of truncated strings in the data inspector
This commit is contained in:
@@ -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 += "...";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user