mirror of https://github.com/WerWolv/ImHex
fix: Pattern files not getting truncated correctly when saving
Fixes #2566
This commit is contained in:
parent
858fe0384e
commit
932c281223
|
|
@ -2652,7 +2652,7 @@ namespace hex::plugin::builtin {
|
||||||
if (provider == nullptr)
|
if (provider == nullptr)
|
||||||
return;
|
return;
|
||||||
auto path = m_changeTracker.get(provider).getPath();
|
auto path = m_changeTracker.get(provider).getPath();
|
||||||
wolv::io::File file(path, wolv::io::File::Mode::Write);
|
wolv::io::File file(path, wolv::io::File::Mode::Create);
|
||||||
if (file.isValid() && trackFile) {
|
if (file.isValid() && trackFile) {
|
||||||
if (isPatternDirty(provider)) {
|
if (isPatternDirty(provider)) {
|
||||||
file.writeString(wolv::util::trim(m_textEditor.get(provider).getText()));
|
file.writeString(wolv::util::trim(m_textEditor.get(provider).getText()));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue