Skip to content

Commit e810547

Browse files
authored
Merge pull request #4567 from goonerDroid/fix/lack_of_margin_when_multiaccount_is_disabled
[FIX] Lack of margin when multiaccount is disabled
2 parents bd4cd3f + c0edc9b commit e810547

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Diff for: changelog/unreleased/4567

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Bugfix: Add bottom margin for used quota in account dialog
2+
3+
Added bottom margin to the container holding used quota view when multi account is disabled
4+
5+
https://github.com/owncloud/android/issues/4566
6+
https://github.com/owncloud/android/pull/4567

Diff for: owncloudApp/src/main/res/layout/account_item.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@
130130
android:layout_height="wrap_content"
131131
android:layout_marginStart="@dimen/standard_margin"
132132
android:layout_marginEnd="@dimen/standard_margin"
133-
android:layout_marginTop="@dimen/standard_half_margin">
133+
android:layout_marginTop="@dimen/standard_half_margin"
134+
android:layout_marginBottom="@dimen/standard_half_margin">
134135

135136
<TextView
136137
android:layout_width="wrap_content"

0 commit comments

Comments
 (0)