From 8e01da4c124eeeef570fe646ef2635a69581cba8 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 24 Dec 2024 13:06:38 +0100 Subject: [PATCH] lang: Fixed settings language string in hashes view --- plugins/hashes/source/content/views/view_hashes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hashes/source/content/views/view_hashes.cpp b/plugins/hashes/source/content/views/view_hashes.cpp index df04b06ad..5c408b984 100644 --- a/plugins/hashes/source/content/views/view_hashes.cpp +++ b/plugins/hashes/source/content/views/view_hashes.cpp @@ -175,7 +175,7 @@ namespace hex::plugin::hashes { if (m_newHashName.empty() && m_selectedHash != nullptr) m_newHashName = hex::format("{} {}", Lang(m_selectedHash->getUnlocalizedName()), static_cast("hex.hashes.view.hashes.hash"_lang)); - if (ImGuiExt::BeginSubWindow("hex.builtin.common.settings"_lang, nullptr, scaled({ 400, 200 }))) { + if (ImGuiExt::BeginSubWindow("hex.ui.common.settings"_lang, nullptr, scaled({ 400, 200 }))) { if (m_selectedHash != nullptr) { auto startPos = ImGui::GetCursorPosY(); m_selectedHash->draw();