Qt/GCMemcardManager: Add an 'All Files' option to the filetype selection.

This commit is contained in:
Admiral H. Curtiss 2019-04-10 19:54:38 +02:00
parent c7fc9126aa
commit 5614594f5e

View File

@ -268,7 +268,7 @@ void GCMemcardManager::SetSlotFileInteractive(int slot)
this,
slot == 0 ? tr("Set memory card file for Slot A") : tr("Set memory card file for Slot B"),
QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
tr("GameCube Memory Cards (*.raw *.gcp)")));
tr("GameCube Memory Cards (*.raw *.gcp)") + QStringLiteral(";;") + tr("All Files (*)")));
if (!path.isEmpty())
m_slot_file_edit[slot]->setText(path);
}