From 05c45829f8d77853bcfd0375cfc5a717bfa6b2b4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 13 Feb 2024 04:13:20 -0600 Subject: [PATCH] wip --- selfdrive/ui/qt/body.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/selfdrive/ui/qt/body.cc b/selfdrive/ui/qt/body.cc index b3e93bc..e4159a2 100644 --- a/selfdrive/ui/qt/body.cc +++ b/selfdrive/ui/qt/body.cc @@ -47,6 +47,10 @@ LogoWidget::LogoWidget(QWidget *parent) : QWidget(parent) { // connect(&m_anim, SIGNAL(valueChanged(QVariant)), SLOT(update())); } +void LogoWidget::paintEvent(QPaintEvent *event) { + QPainter painter(this); +} + BodyWindow::BodyWindow(QWidget *parent) : QWidget(parent) { QGridLayout *layout = new QGridLayout(this); layout->setSpacing(0);