Fix the file filter in the install plugin file dialog

This commit is contained in:
morg 2022-06-22 22:33:59 +02:00 committed by Adam Honse
parent 439afed737
commit 9bd4afe010
6 changed files with 10 additions and 10 deletions

View file

@ -87,7 +87,7 @@ void Ui::OpenRGBPluginsPage::on_InstallPluginButton_clicked()
/*-----------------------------------------------------*\
| Open a file selection prompt to choose the plugin file|
\*-----------------------------------------------------*/
QString install_file = QFileDialog::getOpenFileName(this, tr("Install OpenRGB Plugin"), "", tr("Plugin files (*.dll; *.dylib; *.so; *.so.*)"));
QString install_file = QFileDialog::getOpenFileName(this, tr("Install OpenRGB Plugin"), "", tr("Plugin files (*.dll *.dylib *.so *.so.*)"));
bool installed = InstallPlugin(install_file.toStdString());