From d8d7c37cf15faae283e72af267c8b3338f3f163f Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Wed, 8 Jan 2025 21:03:09 -0600 Subject: [PATCH] Fix SDK/Plugin version not displaying correctly --- qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp b/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp index 8b58cab5..ff741817 100644 --- a/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp +++ b/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.cpp @@ -18,7 +18,8 @@ OpenRGBSoftwareInfoPage::OpenRGBSoftwareInfoPage(QWidget *parent) : ui(new Ui::OpenRGBSoftwareInfoPageUi) { ui->setupUi(this); - + ui->SDKVersionValue->setText(QString::number(OPENRGB_SDK_PROTOCOL_VERSION)); + ui->PluginAPIVersionValue->setText(QString::number(OPENRGB_PLUGIN_API_VERSION)); ui->VersionValue->setText(VERSION_STRING); ui->BuildDateValue->setText(BUILDDATE_STRING); ui->GitCommitIDValue->setText(GIT_COMMIT_ID);