diff --git a/src/gui/formupdate.cpp b/src/gui/formupdate.cpp index db32be1e8..14214b5c3 100755 --- a/src/gui/formupdate.cpp +++ b/src/gui/formupdate.cpp @@ -88,7 +88,7 @@ void FormUpdate::checkForUpdates() { m_ui->m_lblAvailableRelease->setText(update.first.m_availableVersion); m_ui->m_txtChanges->setText(update.first.m_changes); - if (update.first.m_availableVersion >= APP_VERSION) { + if (update.first.m_availableVersion > APP_VERSION) { m_ui->m_lblStatus->setStatus(WidgetWithStatus::Ok, tr("New release available."), tr("This is new version which can be\ndownloaded and installed."));