Qt: Add webp to cover file filter

This commit is contained in:
Stenzek 2023-10-02 17:41:01 +10:00 committed by Connor McLaughlin
parent 10b217e0c2
commit 34f92fe4e5
1 changed files with 1 additions and 1 deletions

View File

@ -2395,7 +2395,7 @@ void MainWindow::startGameListEntry(const GameList::Entry* entry, std::optional<
void MainWindow::setGameListEntryCoverImage(const GameList::Entry* entry)
{
const QString filename = QDir::toNativeSeparators(
QFileDialog::getOpenFileName(this, tr("Select Cover Image"), QString(), tr("All Cover Image Types (*.jpg *.jpeg *.png)")));
QFileDialog::getOpenFileName(this, tr("Select Cover Image"), QString(), tr("All Cover Image Types (*.jpg *.jpeg *.png *.webp)")));
if (filename.isEmpty())
return;