From 91f49e2c6e294e8fc02b77a01bf32f3e464507e4 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 18 Dec 2023 11:46:39 +0100 Subject: [PATCH] fix: Window title not updating correctly when renaming memory file --- .../builtin/source/content/providers/memory_file_provider.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/builtin/source/content/providers/memory_file_provider.cpp b/plugins/builtin/source/content/providers/memory_file_provider.cpp index 60ade2901..b8c6d917d 100644 --- a/plugins/builtin/source/content/providers/memory_file_provider.cpp +++ b/plugins/builtin/source/content/providers/memory_file_provider.cpp @@ -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(); }); }