Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11437 from t895/grid-options-fix
Android: Fix grid options text borders
  • Loading branch information
JosJuice committed Jan 14, 2023
2 parents 8a1cac9 + 4f397ed commit 9d350fd
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -28,11 +28,13 @@

<TextView
android:id="@+id/text_download_covers"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:layout_marginStart="24dp"
android:text="@string/download_game_covers"
app:layout_constraintBottom_toBottomOf="@+id/switch_download_covers"
app:layout_constraintEnd_toStartOf="@+id/switch_download_covers"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/switch_download_covers" />

Expand All @@ -59,11 +61,13 @@

<TextView
android:id="@+id/text_show_titles"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:layout_marginStart="24dp"
android:text="@string/show_titles_in_game_list"
app:layout_constraintBottom_toBottomOf="@+id/switch_show_titles"
app:layout_constraintEnd_toStartOf="@+id/switch_show_titles"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/switch_show_titles" />

Expand Down

0 comments on commit 9d350fd

Please sign in to comment.