From a657a23aaa3e49585b7eaf766c9c200af33ce361 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 20 Jan 2024 10:33:11 +0100 Subject: [PATCH] fix: Crash when hex editor view got too small --- plugins/ui/source/ui/hex_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ui/source/ui/hex_editor.cpp b/plugins/ui/source/ui/hex_editor.cpp index 91100b933..f29cd7f54 100644 --- a/plugins/ui/source/ui/hex_editor.cpp +++ b/plugins/ui/source/ui/hex_editor.cpp @@ -704,8 +704,8 @@ namespace hex::ui { ImGui::EndTable(); ImGui::PopStyleVar(); } - ImGui::EndChild(); } + ImGui::EndChild(); m_shouldScrollToSelection = false; }