diff --git a/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp b/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp index 4e98e5b9..8b58cab5 100644 --- a/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp +++ b/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp @@ -20,8 +20,6 @@ OpenRGBSoftwareInfoPage::OpenRGBSoftwareInfoPage(QWidget *parent) : ui->setupUi(this); ui->VersionValue->setText(VERSION_STRING); - ui->SDKVersionValue->setText(QString::number(OPENRGB_SDK_PROTOCOL_VERSION)); - ui->PluginAPIVersionValue->setText(QString::number(OPENRGB_PLUGIN_API_VERSION)); ui->BuildDateValue->setText(BUILDDATE_STRING); ui->GitCommitIDValue->setText(GIT_COMMIT_ID); ui->GitCommitDateValue->setText(GIT_COMMIT_DATE); @@ -38,5 +36,8 @@ void OpenRGBSoftwareInfoPage::changeEvent(QEvent *event) if(event->type() == QEvent::LanguageChange) { ui->retranslateUi(this); + + ui->SDKVersionValue->setText(QString::number(OPENRGB_SDK_PROTOCOL_VERSION)); + ui->PluginAPIVersionValue->setText(QString::number(OPENRGB_PLUGIN_API_VERSION)); } }