summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-09-25 18:31:23 -0400
committerCharles Lombardo <clombardo169@gmail.com>2023-09-25 18:31:23 -0400
commitff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d (patch)
tree743697ea77e6688a39667f9b0922060db7102dc8
parenta19f62e636b516b8a4d218f3f7327c16bd70af94 (diff)
android: Remove bottom attribute from navigation view
Using the "bottom" attribute would break the navigation view and prevent things like rounded corners and lock modes from being applied properly.
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml2
1 files changed, 1 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 da97d85c1..0498bc71d 100644
--- a/src/android/app/src/main/res/layout/fragment_emulation.xml
+++ b/src/android/app/src/main/res/layout/fragment_emulation.xml
@@ -155,7 +155,7 @@
android:id="@+id/in_game_menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:layout_gravity="start|bottom"
+ android:layout_gravity="start"
app:headerLayout="@layout/header_in_game"
app:menu="@menu/menu_in_game"
tools:visibility="gone" />