Skip to content

Commit d8d7c37

Browse files
Fix SDK/Plugin version not displaying correctly
1 parent 471f9d3 commit d8d7c37

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ OpenRGBSoftwareInfoPage::OpenRGBSoftwareInfoPage(QWidget *parent) :
1818
ui(new Ui::OpenRGBSoftwareInfoPageUi)
1919
{
2020
ui->setupUi(this);
21-
21+
ui->SDKVersionValue->setText(QString::number(OPENRGB_SDK_PROTOCOL_VERSION));
22+
ui->PluginAPIVersionValue->setText(QString::number(OPENRGB_PLUGIN_API_VERSION));
2223
ui->VersionValue->setText(VERSION_STRING);
2324
ui->BuildDateValue->setText(BUILDDATE_STRING);
2425
ui->GitCommitIDValue->setText(GIT_COMMIT_ID);

0 commit comments

Comments
 (0)