From f1635eabdb2179302be7eeabdf7951ea301c6d34 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 2 Aug 2021 10:55:46 -0700 Subject: [PATCH] installer: repaint -> update --- selfdrive/ui/qt/setup/installer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/setup/installer.cc b/selfdrive/ui/qt/setup/installer.cc index 94d56fcb86..c7055dcc87 100644 --- a/selfdrive/ui/qt/setup/installer.cc +++ b/selfdrive/ui/qt/setup/installer.cc @@ -86,7 +86,7 @@ Installer::Installer(QWidget *parent) : QWidget(parent) { void Installer::updateProgress(int percent) { bar->setValue(percent); val->setText(QString("%1%").arg(percent)); - repaint(); + update(); } void Installer::doInstall() {