From 1efe681967cc764db3185134e0750349061a6e41 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 20 Mar 2025 23:22:51 +0000 Subject: Support capturing and reacting to ImGui window closure --- ui/queryTool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/queryTool.cpp') diff --git a/ui/queryTool.cpp b/ui/queryTool.cpp index d016afa..0157246 100644 --- a/ui/queryTool.cpp +++ b/ui/queryTool.cpp @@ -31,9 +31,9 @@ QueryTool::click(const SDL_MouseButtonEvent & event, const Ray } void -QueryTool::render() +QueryTool::render(bool & open) { - ImGui::Begin("Query Tool"); + ImGui::Begin("Query Tool", &open); ImGui::TextUnformatted(clicked.c_str()); ImGui::End(); } -- cgit v1.2.3