Skip to content

Commit

Permalink
fix(options): use correct text color in options switches (#179)
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Kuestersteffen <[email protected]>
  • Loading branch information
hayribakici and jkuester authored Dec 27, 2023
1 parent 4b25d7e commit 5bab953
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
android:text="@string/customize_app_drawer_fragment_show_search_bar"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="@dimen/_20ssp"
android:textColor="?switchTextColor"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

Expand All @@ -42,6 +43,7 @@
android:text="@string/customize_app_drawer_fragment_open_keyboard"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="@dimen/_20ssp"
android:textColor="?switchTextColor"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/customize_app_drawer_fragment_search_field_position" />

Expand All @@ -54,6 +56,7 @@
android:text="@string/customize_app_drawer_fragment_search_all"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="@dimen/font_size_customize_options"
android:textColor="?switchTextColor"
app:layout_constraintTop_toBottomOf="@id/customize_app_drawer_open_keyboard_switch"
app:layout_constraintStart_toStartOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
1 change: 1 addition & 0 deletions app/src/main/res/layout/options_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:textColor="?switchTextColor"
android:text="@string/customize_app_drawer_fragment_auto_theme_wallpaper_text"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="@dimen/font_size_customize_options"
Expand Down

0 comments on commit 5bab953

Please sign in to comment.