Skip to content
This repository has been archived by the owner on Jan 9, 2022. It is now read-only.

Commit

Permalink
fix SA version (commaai#444)
Browse files Browse the repository at this point in the history
* fix version

* fix
  • Loading branch information
sshane authored Aug 12, 2021
1 parent 04d5afa commit c0748a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/ui/qt/util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ QString getBrand() {
}

QString getBrandVersion() {
return getBrand() + " v" + QString::fromStdString(Params().get("Version")).left(14).trimmed();
return getBrand() + " v" + QString::fromStdString(Params().get("Version")).left(35).trimmed();
}

void configFont(QPainter &p, const QString &family, int size, const QString &style) {
Expand Down

0 comments on commit c0748a0

Please sign in to comment.