From eaf42dfa0a7ed2ff9e0ebbb85ab34a9abed0ba62 Mon Sep 17 00:00:00 2001 From: morg Date: Thu, 11 Nov 2021 13:08:02 +0100 Subject: [PATCH] Change DLL files to Plugins files in the file chooser. #1919 --- qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp b/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp index df07e462..af1cf25a 100644 --- a/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp +++ b/qt/OpenRGBPluginsPage/OpenRGBPluginsPage.cpp @@ -86,7 +86,7 @@ void Ui::OpenRGBPluginsPage::on_InstallPluginButton_clicked() /*-----------------------------------------------------*\ | Open a file selection prompt to choose the plugin file| \*-----------------------------------------------------*/ - QString install_file = QFileDialog::getOpenFileName(this, "Install OpenRGB Plugin", "", "DLL Files (*.dll; *.dylib; *.so; *.so.*)"); + QString install_file = QFileDialog::getOpenFileName(this, "Install OpenRGB Plugin", "", "Plugin files (*.dll; *.dylib; *.so; *.so.*)"); bool installed = InstallPlugin(install_file.toStdString());