diff --git a/selfdrive/ui/qt/window.cc b/selfdrive/ui/qt/window.cc index ee1a7edbb7..787fe4ebaa 100644 --- a/selfdrive/ui/qt/window.cc +++ b/selfdrive/ui/qt/window.cc @@ -76,7 +76,7 @@ void MainWindow::closeSettings() { bool MainWindow::eventFilter(QObject *obj, QEvent *event) { // wake screen on tap - if (event->type() == QEvent::MouseButtonPress) { + if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::TouchBegin) { device.setAwake(true, true); }