From 5c365d3398e92acac97ddaf93e2dfa054ddf87d9 Mon Sep 17 00:00:00 2001 From: Trey Moen <50057480+greatgitsby@users.noreply.github.com> Date: Sun, 13 Sep 2026 15:46:29 -0700 Subject: [PATCH] cabana: remove inner video container (#38901) --- openpilot/tools/cabana/ui/mainwin.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/openpilot/tools/cabana/ui/mainwin.cc b/openpilot/tools/cabana/ui/mainwin.cc index aa33e8adc2..545d846b12 100644 --- a/openpilot/tools/cabana/ui/mainwin.cc +++ b/openpilot/tools/cabana/ui/mainwin.cc @@ -863,10 +863,8 @@ void MainWindow::drawVideoPanel() { if (video_widget_ && !video_open) { video_widget_->setVisible(false); // the dock is collapsed or tabbed behind another one, like hideEvent } else if (video_widget_) { - ImGui::BeginChild("video", ImVec2(0, 0), ImGuiChildFlags_Borders); help_overlay_.add(video_widget_->whatsThis(), ImGui::GetCurrentWindow()->Rect()); video_widget_->draw(); - ImGui::EndChild(); } ImGui::End(); if (!video_visible_ && floating) video_visible_ = reset_layout_ = true;