diff options
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_emulation.xml | 14 |
1 files changed, 7 insertions, 7 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 c2eb097f9..a3e5707ef 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -24,6 +24,13 @@ android:focusable="false" android:focusableInTouchMode="false" /> + <org.yuzu.yuzu_emu.overlay.InputOverlay + android:id="@+id/surface_input_overlay" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:focusable="true" + android:focusableInTouchMode="true" /> + <TextView android:id="@+id/show_fps_text" android:layout_width="wrap_content" @@ -37,11 +44,4 @@ android:textColor="@android:color/white" android:textSize="12sp" /> - <org.yuzu.yuzu_emu.overlay.InputOverlay - android:id="@+id/surface_input_overlay" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:focusable="true" - android:focusableInTouchMode="true" /> - </FrameLayout> |