Skip to content

Commit

Permalink
Change device name to version
Browse files Browse the repository at this point in the history
  • Loading branch information
tcorbly committed Dec 15, 2023
1 parent 0668e42 commit bfb8fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AboutWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AboutWidget::AboutWidget(Device *device, QWidget *parent)
// Version Number
// ui->version->setText("Version 30.2.0");
const bool on = NetworkManager::ref().isOn();
ui->deviceName->setText(device->name() + " v" + device->version());
ui->version->setText(device->name() + " v" + device->version());

// Display Serial Number
const QString serial = device->serial();
Expand Down

0 comments on commit bfb8fce

Please sign in to comment.