diff --git a/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp b/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp index 4ab3f0d3..0e9c5c03 100644 --- a/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp +++ b/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp @@ -371,6 +371,12 @@ void Ui::OpenRGBPluginsPage::on_PluginsList_itemSelectionChanged() if(!entries[cur_row]->is_system) { ui->RemovePluginButton->setEnabled(!ui->PluginsList->selectedItems().empty()); + ui->RemovePluginButton->setText("Remove Plugin"); + } + else + { + ui->RemovePluginButton->setEnabled(false); + ui->RemovePluginButton->setText("System Plugin - Cannot Remove"); } }