From 7948653605a2085015bfe599da79d15babba1be7 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Tue, 19 Jan 2021 13:47:36 +0100 Subject: [PATCH] update pairing text --- selfdrive/ui/qt/widgets/setup.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/selfdrive/ui/qt/widgets/setup.cc b/selfdrive/ui/qt/widgets/setup.cc index 2a43a9ddba..99596584ba 100644 --- a/selfdrive/ui/qt/widgets/setup.cc +++ b/selfdrive/ui/qt/widgets/setup.cc @@ -27,7 +27,7 @@ PairingQRWidget::PairingQRWidget(QWidget* parent) : QWidget(parent) { QVBoxLayout* v = new QVBoxLayout; v->addWidget(qrCode, 0, Qt::AlignCenter); setLayout(v); - + QTimer* timer = new QTimer(this); timer->start(30 * 1000);// HaLf a minute connect(timer, SIGNAL(timeout()), this, SLOT(refresh())); @@ -184,8 +184,8 @@ SetupWidget::SetupWidget(QWidget* parent) : QWidget(parent) { )"); QObject::connect(finishButton, SIGNAL(released()), this, SLOT(showQrCode())); finishRegistationLayout->addWidget(finishButton); - - QLabel* registrationDescription = new QLabel("Pair your comma account with comma connect", this); + + QLabel* registrationDescription = new QLabel("Pair your device with comma connect app", this); registrationDescription->setStyleSheet(R"( font-size: 50px; )");