diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-20 23:22:51 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-20 23:22:51 +0000 |
commit | 1efe681967cc764db3185134e0750349061a6e41 (patch) | |
tree | 7ef9b34d0197a6a97e0de4caec3db3099a76d7b6 /ui/queryTool.cpp | |
parent | Remove unrequired UIShader (diff) | |
download | ilt-1efe681967cc764db3185134e0750349061a6e41.tar.bz2 ilt-1efe681967cc764db3185134e0750349061a6e41.tar.xz ilt-1efe681967cc764db3185134e0750349061a6e41.zip |
Support capturing and reacting to ImGui window closure
Diffstat (limited to 'ui/queryTool.cpp')
-rw-r--r-- | ui/queryTool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<GlobalPosition3D> } void -QueryTool::render() +QueryTool::render(bool & open) { - ImGui::Begin("Query Tool"); + ImGui::Begin("Query Tool", &open); ImGui::TextUnformatted(clicked.c_str()); ImGui::End(); } |