Skip to content

Commit

Permalink
Merge pull request #1079 from deXol/develop
Browse files Browse the repository at this point in the history
Fix Qt6 serial number conversion issue
  • Loading branch information
limpkin authored Oct 14, 2022
2 parents 61f1f61 + 23253ab commit 962ba01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ void MainWindow::updateSerialInfos() {
ui->labelAboutFwVersValue->setVisible(!wsClient->isMPBLE());
ui->label_UserManual->setText(MANUAL_STRING.arg(wsClient->isMPBLE() ? BLE_MANUAL_URL : MINI_MANUAL_URL));
ui->label_UserManual->show();
if (wsClient->isMPBLE() && serialNum > STARTING_NOT_FLASHED_SERIAL &&
if (wsClient->isMPBLE() && wsClient->get_hwSerial() > STARTING_NOT_FLASHED_SERIAL &&
wsClient->get_hwSerial() != wsClient->get_platformSerial())
{
ui->widgetNotFlashedWarning->show();
Expand Down

0 comments on commit 962ba01

Please sign in to comment.