diff options
| author | 2023-09-25 18:31:23 -0400 | |
|---|---|---|
| committer | 2023-09-25 18:31:23 -0400 | |
| commit | ff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d (patch) | |
| tree | 743697ea77e6688a39667f9b0922060db7102dc8 | |
| parent | Merge pull request #11583 from t895/overlay-fix-2 (diff) | |
| download | yuzu-ff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d.tar.gz yuzu-ff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d.tar.xz yuzu-ff9d8dd0b3922dbcb3911cf3515ce5e2b0c6438d.zip | |
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.xml | 2 |
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 @@ | |||
| 155 | android:id="@+id/in_game_menu" | 155 | android:id="@+id/in_game_menu" |
| 156 | android:layout_width="wrap_content" | 156 | android:layout_width="wrap_content" |
| 157 | android:layout_height="match_parent" | 157 | android:layout_height="match_parent" |
| 158 | android:layout_gravity="start|bottom" | 158 | android:layout_gravity="start" |
| 159 | app:headerLayout="@layout/header_in_game" | 159 | app:headerLayout="@layout/header_in_game" |
| 160 | app:menu="@menu/menu_in_game" | 160 | app:menu="@menu/menu_in_game" |
| 161 | tools:visibility="gone" /> | 161 | tools:visibility="gone" /> |