From 34f92fe4e59a11d9a829cb0e0bc290fd5a41b218 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Mon, 2 Oct 2023 17:41:01 +1000 Subject: [PATCH] Qt: Add webp to cover file filter --- pcsx2-qt/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-qt/MainWindow.cpp b/pcsx2-qt/MainWindow.cpp index c9fc9f7db5..cb718dba7c 100644 --- a/pcsx2-qt/MainWindow.cpp +++ b/pcsx2-qt/MainWindow.cpp @@ -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;