From 5319474ee57abeaafcd787a69e66823c873e1f93 Mon Sep 17 00:00:00 2001 From: Trey Moen <50057480+greatgitsby@users.noreply.github.com> Date: Sun, 13 Sep 2026 16:31:19 -0700 Subject: [PATCH] cabana: disable tool window collapse (#38906) --- openpilot/tools/cabana/ui/tools/tooldialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpilot/tools/cabana/ui/tools/tooldialog.h b/openpilot/tools/cabana/ui/tools/tooldialog.h index 06807bcd33..4a8aeab7b2 100644 --- a/openpilot/tools/cabana/ui/tools/tooldialog.h +++ b/openpilot/tools/cabana/ui/tools/tooldialog.h @@ -28,7 +28,7 @@ protected: ImGui::SetNextWindowSize(size, ImGuiCond_Appearing); setNextWindowFloatsOut(); began_ = true; - return visible_ = ImGui::Begin(title_.c_str(), &open_, ImGuiWindowFlags_NoSavedSettings); + return visible_ = ImGui::Begin(title_.c_str(), &open_, ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoCollapse); } bool end() {