mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
citra_qt/main: Simplify OnMenuLoadFile()
We can utilize QStringList's join() function to perform all of the appending in a single function call. While we're at it, make the extension list a single translatable string and add a disambiguation comment to explain to translators what %1 actually is.
This commit is contained in:
parent
0962ab8da9
commit
7ddfce4a87
@ -989,20 +989,20 @@ void GMainWindow::OnGameListShowList(bool show) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void GMainWindow::OnMenuLoadFile() {
|
void GMainWindow::OnMenuLoadFile() {
|
||||||
QString extensions;
|
const QString extensions =
|
||||||
for (const auto& piece : game_list->supported_file_extensions)
|
QString("*.").append(GameList::supported_file_extensions.join(" *."));
|
||||||
extensions += "*." + piece + " ";
|
const QString file_filter = tr("3DS Executable (%1);;All Files (*.*)",
|
||||||
|
"%1 is an identifier for the 3DS executable file extensions.")
|
||||||
|
.arg(extensions);
|
||||||
|
const QString filename = QFileDialog::getOpenFileName(
|
||||||
|
this, tr("Load File"), UISettings::values.roms_path, file_filter);
|
||||||
|
|
||||||
QString file_filter = tr("3DS Executable") + " (" + extensions + ")";
|
if (filename.isEmpty()) {
|
||||||
file_filter += ";;" + tr("All Files (*.*)");
|
return;
|
||||||
|
|
||||||
QString filename = QFileDialog::getOpenFileName(this, tr("Load File"),
|
|
||||||
UISettings::values.roms_path, file_filter);
|
|
||||||
if (!filename.isEmpty()) {
|
|
||||||
UISettings::values.roms_path = QFileInfo(filename).path();
|
|
||||||
|
|
||||||
BootGame(filename);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UISettings::values.roms_path = QFileInfo(filename).path();
|
||||||
|
BootGame(filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GMainWindow::OnMenuInstallCIA() {
|
void GMainWindow::OnMenuInstallCIA() {
|
||||||
|
Loading…
Reference in New Issue
Block a user