From bf6816d81a60c41bcb217584dfa95454f6a66eb8 Mon Sep 17 00:00:00 2001 From: Andrew Pilley Date: Mon, 19 Feb 2024 15:21:44 +1100 Subject: [PATCH] Remove translation of literal filename/filter format. --- src/yuzu/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index df58b556e0..896dfaaeed 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -4300,7 +4300,7 @@ void GMainWindow::OnInstallDecryptionKeys() { const QString key_source_location = QFileDialog::getOpenFileName(this, tr("Select Dumped Keys Location"), {}, - tr("prod.keys (prod.keys)"), {}, QFileDialog::ReadOnly); + QStringLiteral("prod.keys (prod.keys)"), {}, QFileDialog::ReadOnly); if (key_source_location.isEmpty()) { return; }