mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-09 09:38:41 +00:00
Minor fix: enable qt gui to find PKG files with lowercase extension .pkg
This commit is contained in:
parent
9291b673a0
commit
5bb5063480
1 changed files with 2 additions and 2 deletions
|
@ -577,7 +577,7 @@ void MainWindow::SaveWindowState() const {
|
||||||
void MainWindow::InstallPkg() {
|
void MainWindow::InstallPkg() {
|
||||||
QFileDialog dialog;
|
QFileDialog dialog;
|
||||||
dialog.setFileMode(QFileDialog::ExistingFiles);
|
dialog.setFileMode(QFileDialog::ExistingFiles);
|
||||||
dialog.setNameFilter(tr("PKG File (*.PKG)"));
|
dialog.setNameFilter(tr("PKG File (*.PKG *.pkg)"));
|
||||||
if (dialog.exec()) {
|
if (dialog.exec()) {
|
||||||
QStringList fileNames = dialog.selectedFiles();
|
QStringList fileNames = dialog.selectedFiles();
|
||||||
int nPkg = fileNames.size();
|
int nPkg = fileNames.size();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue