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

Commit e50e7734 authored by Diogo Ferreira's avatar Diogo Ferreira Committed by Matt Garnes
Browse files

profiles: Make the actions wizard buttons show up

The "back" and "finish" buttons weren't being shown at all in this
layout, which made it impossible to add profiles.

Change-Id: Ib6b52430c25ed7445ca8e3c1249b7fccd21c3c69
parent 7354f6c1
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -21,9 +21,9 @@
        android:id="@android:id/list"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:paddingStart="@*android:dimen/preference_item_padding_side"
        android:paddingEnd="@*android:dimen/preference_item_padding_side"
        android:layout_height="0dp"/>
        android:paddingEnd="@*android:dimen/preference_item_padding_side"/>


    <LinearLayout
@@ -32,11 +32,10 @@
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        style="?android:buttonBarStyle">
        <View style="@style/settingSeparator" />

        <Button
            android:id="@+id/back"
            android:layout_width="wrap_content"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/wizard_back"
@@ -45,14 +44,13 @@

        <Button
            android:id="@+id/finish"
            android:layout_width="wrap_content"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/wizard_finish"
            style="?android:attr/borderlessButtonStyle"
            />


    </LinearLayout>

</LinearLayout>