Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11447 from t895/save-state-fix
Android: Fix large strings in save/load savestate fragment
  • Loading branch information
JosJuice committed Jan 16, 2023
2 parents 59b276e + 76ca57e commit 716dabd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions Source/Android/app/src/main/res/layout/fragment_saveload_state.xml
Expand Up @@ -9,38 +9,38 @@

<Button
android:id="@+id/loadsave_state_button_1"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

<Button
android:id="@+id/loadsave_state_button_2"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

<Button
android:id="@+id/loadsave_state_button_3"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

<Button
android:id="@+id/loadsave_state_button_4"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

<Button
android:id="@+id/loadsave_state_button_5"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

<Button
android:id="@+id/loadsave_state_button_6"
android:layout_width="128dp"
android:layout_height="96dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/OverlayInGameMenuOption"/>

</GridLayout>
2 changes: 1 addition & 1 deletion Source/Android/app/src/main/res/values/styles.xml
Expand Up @@ -14,7 +14,7 @@

<style name="OverlayInGameMenuOption" parent="InGameMenuOption">
<item name="android:textColor">@android:color/white</item>
<item name="android:padding">8dp</item>
<item name="android:padding">@dimen/spacing_medlarge</item>
<item name="android:gravity">center</item>
<item name="android:layout_gravity">center</item>
</style>
Expand Down

0 comments on commit 716dabd

Please sign in to comment.