diff options
| author | 2018-10-25 17:03:31 -0400 | |
|---|---|---|
| committer | 2018-10-25 17:27:30 -0400 | |
| commit | 85285b09b0d3243858badb7c044507f3eb6fcb45 (patch) | |
| tree | ca81e99806c894f35dbd8ceebaf439933ee76094 | |
| parent | configure_system: Make GetAccountUsername() an internal function (diff) | |
| download | yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.gz yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.xz yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.zip | |
configure_system: Make the file selector text translatable
This should be localizable, since it's user-facing text.
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index a9bd5465d..20ffb0a9a 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -328,7 +328,7 @@ void ConfigureSystem::SetUserImage() { | |||
| 328 | const auto username = GetAccountUsername(*profile_manager, *uuid); | 328 | const auto username = GetAccountUsername(*profile_manager, *uuid); |
| 329 | 329 | ||
| 330 | const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(), | 330 | const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(), |
| 331 | "JPEG Images (*.jpg *.jpeg)"); | 331 | tr("JPEG Images (*.jpg *.jpeg)")); |
| 332 | 332 | ||
| 333 | if (file.isEmpty()) | 333 | if (file.isEmpty()) |
| 334 | return; | 334 | return; |