diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2024-01-28 14:52:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-28 14:52:57 +0100 |
commit | 3ec41503e3688ca9e46152403232054ab5971a0b (patch) | |
tree | 60a82854db7937b7129235bc978ace4570268813 | |
parent | Merge pull request #12824 from t895/multi-boot (diff) | |
parent | android: Disable focus on loading card (diff) | |
download | yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar.gz yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar.bz2 yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar.lz yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar.xz yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.tar.zst yuzu-3ec41503e3688ca9e46152403232054ab5971a0b.zip |
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_emulation.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml index c01117d14..0d2bfe8d6 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -34,8 +34,10 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" + android:focusable="false" android:defaultFocusHighlightEnabled="false" - android:clickable="false"> + android:clickable="false" + app:rippleColor="@android:color/transparent"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/loading_layout" |