From f993c0532dfd19bd60d95895ea4995dccc3f8b34 Mon Sep 17 00:00:00 2001 From: kleidis Date: Tue, 28 Oct 2025 19:09:31 +0100 Subject: [PATCH] swap import / export icon on gamePropertiesFragment --- .../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 6861916430..267b830a74 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_import, + iconId = R.drawable.ic_export, 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_export, + iconId = R.drawable.ic_import, action = { exportConfig.launch(args.game.settingsName + ".ini") }