summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2023-11-14 18:20:24 -0500
committerGravatar GitHub2023-11-14 18:20:24 -0500
commit24548b1f5ceb32feb6295561c27df7d1ce96746a (patch)
tree64e5bc04ede4541b654c83b19897ae60a06236d6 /src
parentMerge pull request #12035 from t895/pip-startup-shutdown-fix (diff)
parentandroid: Add drop shadow to FPS counter (diff)
downloadyuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.gz
yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.tar.xz
yuzu-24548b1f5ceb32feb6295561c27df7d1ce96746a.zip
Merge pull request #12034 from t895/fps-outline
android: Add drop shadow to FPS counter
Diffstat (limited to 'src')
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml5
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 @@
139 139
140 <com.google.android.material.textview.MaterialTextView 140 <com.google.android.material.textview.MaterialTextView
141 android:id="@+id/show_fps_text" 141 android:id="@+id/show_fps_text"
142 style="@style/TextAppearance.Material3.BodyMedium" 142 style="@style/TextAppearance.Material3.BodySmall"
143 android:layout_width="wrap_content" 143 android:layout_width="wrap_content"
144 android:layout_height="wrap_content" 144 android:layout_height="wrap_content"
145 android:layout_gravity="left" 145 android:layout_gravity="left"
@@ -147,7 +147,8 @@
147 android:focusable="false" 147 android:focusable="false"
148 android:paddingHorizontal="20dp" 148 android:paddingHorizontal="20dp"
149 android:textColor="@android:color/white" 149 android:textColor="@android:color/white"
150 android:textSize="12sp" 150 android:shadowColor="@android:color/black"
151 android:shadowRadius="3"
151 tools:ignore="RtlHardcoded" /> 152 tools:ignore="RtlHardcoded" />
152 153
153 </FrameLayout> 154 </FrameLayout>