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

Commit c4584a78 authored by cretin45's avatar cretin45
Browse files

SetupWizard: Ellipsize long text in button bar

Change-Id: Id71b60b449545aeb92bd2325c8ded769bee8e014
parent 822c7ec5
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -14,23 +14,23 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/button_bar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="horizontal"
              android:background="@color/button_bar_background">

    <Button
        style="@style/ButtonBar.Left"
        android:id="@+id/prev_button"
        android:layout_width="wrap_content"
        android:layout_alignParentLeft="true"/>
        android:layout_weight="1"/>

    <Button
        style="@style/ButtonBar.Right"
        android:id="@+id/next_button"
        android:layout_width="wrap_content"
        android:layout_alignParentRight="true"
        android:text="@string/next" />

</RelativeLayout>
 No newline at end of file
</LinearLayout>
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -69,6 +69,7 @@
        <item name="android:textColor">@color/primary_text</item>
        <item name="android:fontFamily">sans-serif</item>
        <item name="android:drawablePadding">6dp</item>
        <item name="android:ellipsize">end</item>
    </style>

    <style name="ButtonBar.Left">