1
0
mirror of synced 2025-01-18 00:56:49 +01:00

fix: Pressing buttons while window is unfocused not working

This commit is contained in:
WerWolv 2024-02-28 23:52:07 +01:00
parent ce9bd796d6
commit 623079ca40

View File

@ -245,6 +245,8 @@ namespace hex::plugin::builtin {
if (ImGui::IsPopupOpen("", ImGuiPopupFlags_AnyPopup))
return;
if (ImGui::IsAnyItemHovered())
return;
static ImGuiWindow *lastFocusedWindow = nullptr;