From 296af748eea505933ed89e879d3c50485e574572 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 1 Mar 2024 20:55:03 +0100 Subject: [PATCH] fix: Platform window not being updated when recovering from a crash --- main/gui/source/window/window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main/gui/source/window/window.cpp b/main/gui/source/window/window.cpp index f8402b341..7ca504fe3 100644 --- a/main/gui/source/window/window.cpp +++ b/main/gui/source/window/window.cpp @@ -158,6 +158,7 @@ namespace hex { } catch (...) { ImGui::ErrorCheckEndFrameRecover(errorRecoverLogCallback, nullptr); ImGui::EndFrame(); + ImGui::UpdatePlatformWindows(); handleException(); } }