1
0
mirror of synced 2024-11-29 01:44:31 +01:00

fix: Hex editor cell editing value taking value of next cell when double clicking

Fixes #541
This commit is contained in:
WerWolv 2022-06-17 14:08:12 +02:00
parent 6490e565d3
commit f6ddb3c5e7

View File

@ -479,7 +479,9 @@ namespace hex::plugin::builtin {
this->m_editingAddress = address;
this->m_shouldModifyValue = false;
this->m_enteredEditingMode = true;
this->m_shouldUpdateEditingValue = true;
this->m_editingBytes.resize(size);
std::memcpy(this->m_editingBytes.data(), data, size);
}
}
}