Change DLL files to Plugins files in the file chooser. #1919

This commit is contained in:
morg 2021-11-11 13:08:02 +01:00
parent ace9093465
commit eaf42dfa0a

View file

@ -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());