fix: Window title not updating correctly when renaming memory file

This commit is contained in:
WerWolv
2023-12-18 11:46:39 +01:00
parent 6bc4a7242e
commit 91f49e2c6e

View File

@@ -148,6 +148,7 @@ namespace hex::plugin::builtin {
void MemoryFileProvider::renameFile() {
PopupTextInput::open("hex.builtin.provider.mem_file.rename"_lang, "hex.builtin.provider.mem_file.rename.desc"_lang, [this](const std::string &name) {
this->m_name = name;
RequestUpdateWindowTitle::post();
});
}