From c5cd6422c6030403281cdec0c76bda7a34ae3080 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 20 Sep 2021 20:42:30 +0200 Subject: [PATCH] fix: Settings menu closing when changing language --- plugins/libimhex/include/hex/views/view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/libimhex/include/hex/views/view.hpp b/plugins/libimhex/include/hex/views/view.hpp index 1727b0f99..1c2e88a0b 100644 --- a/plugins/libimhex/include/hex/views/view.hpp +++ b/plugins/libimhex/include/hex/views/view.hpp @@ -57,7 +57,7 @@ namespace hex { void confirmButtons(const std::string &textLeft, const std::string &textRight, const std::function &leftButtonFn, const std::function &rightButtonFn); static inline std::string toWindowName(const std::string &unlocalizedName) { - return LangEntry(unlocalizedName) + "##" + unlocalizedName; + return LangEntry(unlocalizedName) + "###" + unlocalizedName; } private: