From c760ccb5bbf8164337c48d1d349b4bbc73ae5782 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 23 May 2021 23:07:49 +0200 Subject: [PATCH] ui: Fixed broken header text in about popup --- source/views/view_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/views/view_help.cpp b/source/views/view_help.cpp index 1efeb6688..566ab121f 100644 --- a/source/views/view_help.cpp +++ b/source/views/view_help.cpp @@ -29,7 +29,7 @@ namespace hex { void ViewHelp::drawAboutPopup() { - if (ImGui::BeginPopupModal(View::toWindowName("hex.view.about.name").c_str(), &this->m_aboutWindowOpen, ImGuiWindowFlags_AlwaysAutoResize)) { + if (ImGui::BeginPopupModal(View::toWindowName("hex.view.help.about.name").c_str(), &this->m_aboutWindowOpen, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::Text("ImHex Hex Editor v%s by WerWolv - " ICON_FA_CODE_BRANCH, IMHEX_VERSION); #if defined(GIT_BRANCH) && defined(GIT_COMMIT_HASH) ImGui::SameLine();