File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
qt/OpenRGBSoftwareInfoPage Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ OpenRGBSoftwareInfoPage::OpenRGBSoftwareInfoPage(QWidget *parent) :
20
20
ui->setupUi (this );
21
21
22
22
ui->VersionValue ->setText (VERSION_STRING);
23
- ui->SDKVersionValue ->setText (QString::number (OPENRGB_SDK_PROTOCOL_VERSION));
24
- ui->PluginAPIVersionValue ->setText (QString::number (OPENRGB_PLUGIN_API_VERSION));
25
23
ui->BuildDateValue ->setText (BUILDDATE_STRING);
26
24
ui->GitCommitIDValue ->setText (GIT_COMMIT_ID);
27
25
ui->GitCommitDateValue ->setText (GIT_COMMIT_DATE);
@@ -38,5 +36,8 @@ void OpenRGBSoftwareInfoPage::changeEvent(QEvent *event)
38
36
if (event->type () == QEvent::LanguageChange)
39
37
{
40
38
ui->retranslateUi (this );
39
+
40
+ ui->SDKVersionValue ->setText (QString::number (OPENRGB_SDK_PROTOCOL_VERSION));
41
+ ui->PluginAPIVersionValue ->setText (QString::number (OPENRGB_PLUGIN_API_VERSION));
41
42
}
42
43
}
You can’t perform that action at this time.
0 commit comments