Skip to content

Commit

Permalink
whoop
Browse files Browse the repository at this point in the history
  • Loading branch information
sshane committed Dec 18, 2024
1 parent a3e39b1 commit f097062
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/ui/qt/offroad/driverview.cc
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ DriverViewDialog::DriverViewDialog(QWidget *parent) : DialogBase(parent) {
QVBoxLayout *main_layout = new QVBoxLayout(this);
main_layout->setContentsMargins(0, 0, 0, 0);
DriverViewWindow camera(this);
main_layout->addWidget(camera);
QObject::connect(camera, &DriverViewWindow::clicked, this, &DialogBase::accept);
main_layout->addWidget(&camera);
QObject::connect(&camera, &DriverViewWindow::clicked, this, &DialogBase::accept);
QObject::connect(device(), &Device::interactiveTimeout, this, &DialogBase::accept);
}

Expand Down

0 comments on commit f097062

Please sign in to comment.