From 3b28de6afc13f6695e121949ef433caba9794d08 Mon Sep 17 00:00:00 2001 From: irisz64 Date: Fri, 23 May 2025 15:53:32 +0200 Subject: [PATCH] What a dumb bug... --- src/frontend/ImGuiImpl/PopupWindow.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/ImGuiImpl/PopupWindow.hpp b/src/frontend/ImGuiImpl/PopupWindow.hpp index 837fa276..f5bf5a1d 100644 --- a/src/frontend/ImGuiImpl/PopupWindow.hpp +++ b/src/frontend/ImGuiImpl/PopupWindow.hpp @@ -11,7 +11,7 @@ struct PopupWindow { exec = func; } - void setOpened(bool v) { opened = true; } + void setOpened(bool v) { opened = v; } bool render() { if(!opened)