From b898c5df48e8155d20f210b82f0503c1b4fb38a1 Mon Sep 17 00:00:00 2001 From: kleidis Date: Thu, 30 Oct 2025 15:35:50 +0100 Subject: [PATCH] Revert "swap import / export icon on gamePropertiesFragment" This reverts commit 328882fe80309a665269f637f508729480cbe835. --- .../org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt index 267b830a74..6861916430 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/GamePropertiesFragment.kt @@ -278,7 +278,7 @@ class GamePropertiesFragment : Fragment() { add(SubMenuPropertySecondaryAction( isShown = configExists, descriptionId = R.string.import_config, - iconId = R.drawable.ic_export, + iconId = R.drawable.ic_import, action = { importConfig.launch(arrayOf("text/ini", "application/octet-stream")) } @@ -287,7 +287,7 @@ class GamePropertiesFragment : Fragment() { add(SubMenuPropertySecondaryAction( isShown = configExists, descriptionId = R.string.export_config, - iconId = R.drawable.ic_import, + iconId = R.drawable.ic_export, action = { exportConfig.launch(args.game.settingsName + ".ini") }