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

Commit 38295cc3 authored by Stefan Niedermann's avatar Stefan Niedermann Committed by Niedermann IT-Dienstleistungen
Browse files

Fix spacing in Move dialog

parent e8c7b698
Loading
Loading
Loading
Loading
+52 −56
Original line number Diff line number Diff line
@@ -6,17 +6,12 @@
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/selectableItemBackground"
        android:paddingStart="@dimen/spacer_activity_sides"
        android:paddingEnd="@dimen/spacer_activity_sides">

    <LinearLayout
        android:id="@+id/accountLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/selectableItemBackground"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:padding="@dimen/spacer_2x"
@@ -27,6 +22,7 @@
            android:id="@+id/currentAccountItemAvatar"
            android:layout_width="@dimen/avatar_size"
            android:layout_height="@dimen/avatar_size"
            android:layout_marginStart="@dimen/spacer_activity_sides"
            android:contentDescription="@null"
            android:focusable="false"
            android:scaleType="center"
@@ -64,12 +60,12 @@
            android:id="@+id/check"
            android:layout_width="36dp"
            android:layout_height="36dp"
            android:layout_marginEnd="@dimen/spacer_activity_sides"
            android:contentDescription="@null"
            android:focusable="false"
            android:scaleType="center"
            app:srcCompat="@drawable/check" />
    </LinearLayout>
    </FrameLayout>

    <View
        android:layout_width="match_parent"
+66 −68
Original line number Diff line number Diff line
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/selectableItemBackground"
    android:paddingStart="@dimen/spacer_activity_sides"
    android:paddingEnd="@dimen/spacer_activity_sides">

    <LinearLayout
    android:id="@+id/accountLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/selectableItemBackground"
    android:gravity="center"
    android:orientation="horizontal"
    android:padding="@dimen/spacer_2x"
@@ -26,6 +20,7 @@
            android:id="@+id/accountItemAvatar"
            android:layout_width="@dimen/avatar_size"
            android:layout_height="@dimen/avatar_size"
            android:layout_marginStart="@dimen/spacer_activity_sides"
            android:contentDescription="@null"
            android:focusable="false"
            android:scaleType="center"
@@ -79,5 +74,8 @@
        android:visibility="gone"
        app:srcCompat="@drawable/ic_delete_grey600_24dp"
        tools:visibility="visible" />

    <View
        android:layout_width="@dimen/spacer_activity_sides"
        android:layout_height="0dp" />
</LinearLayout>
 No newline at end of file
</FrameLayout>
 No newline at end of file