diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-25 23:03:31 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-25 23:27:30 +0200 |
commit | 85285b09b0d3243858badb7c044507f3eb6fcb45 (patch) | |
tree | ca81e99806c894f35dbd8ceebaf439933ee76094 | |
parent | configure_system: Make GetAccountUsername() an internal function (diff) | |
download | yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.gz yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.bz2 yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.lz yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.xz yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.zst yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.zip |
-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() { const auto username = GetAccountUsername(*profile_manager, *uuid); const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(), - "JPEG Images (*.jpg *.jpeg)"); + tr("JPEG Images (*.jpg *.jpeg)")); if (file.isEmpty()) return; |