diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-15 00:20:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 00:20:24 +0100 |
commit | 24548b1f5ceb32feb6295561c27df7d1ce96746a (patch) | |
tree | 64e5bc04ede4541b654c83b19897ae60a06236d6 /src/android | |
parent | Merge pull request #12035 from t895/pip-startup-shutdown-fix (diff) | |
parent | android: Add drop shadow to FPS counter (diff) | |
download | yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.gz yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.bz2 yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.lz yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.xz yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.zst yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.zip |
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_emulation.xml | 5 |
1 files changed, 3 insertions, 2 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 cd6360b45..5252adf54 100644 --- a/src/android/app/src/main/res/layout/fragment_emulation.xml +++ b/src/android/app/src/main/res/layout/fragment_emulation.xml @@ -139,7 +139,7 @@ <com.google.android.material.textview.MaterialTextView android:id="@+id/show_fps_text" - style="@style/TextAppearance.Material3.BodyMedium" + style="@style/TextAppearance.Material3.BodySmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="left" @@ -147,7 +147,8 @@ android:focusable="false" android:paddingHorizontal="20dp" android:textColor="@android:color/white" - android:textSize="12sp" + android:shadowColor="@android:color/black" + android:shadowRadius="3" tools:ignore="RtlHardcoded" /> </FrameLayout> |