Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f685f846 authored by Gabriele M's avatar Gabriele M Committed by Luca Stefani
Browse files

Fix TTS engine label text wrapping

If the font size is increased, the gear icon that allows to access
the preferences of a TTS engine can go out of the visible area.

Change-Id: I67a63943a4d1ff8d0f3c7bf10f23bae9be34a40c
parent e2b6fd5f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -24,15 +24,15 @@

    <RadioButton
        android:id="@+id/tts_engine_radiobutton"
        android:layout_width="wrap_content"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:clickable="true"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <View
        android:layout_width="0dp"
        android:layout_width="2dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:drawable/divider_horizontal_dark" />

    <ImageView