Skip to content

Commit 879c2b3

Browse files
committed
add bigger margins at the settings section labels
1 parent d0dfab6 commit 879c2b3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/src/main/kotlin/com/simplemobiletools/notes/pro/adapters/ChecklistAdapter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class ChecklistAdapter(activity: BaseSimpleActivity, var items: ArrayList<Checkl
104104

105105
private fun initDrawables() {
106106
val res = activity.resources
107-
crossDrawable = res.getColoredDrawableWithColor(R.drawable.ic_cross_vector, res.getColor(R.color.theme_dark_red_primary_color))
107+
crossDrawable = res.getColoredDrawableWithColor(R.drawable.ic_cross_vector, res.getColor(R.color.md_red_700))
108108
checkDrawable = res.getColoredDrawableWithColor(R.drawable.ic_check_vector, res.getColor(R.color.md_green_700))
109109
}
110110

app/src/main/res/layout/activity_settings.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
android:layout_width="wrap_content"
6161
android:layout_height="wrap_content"
6262
android:layout_marginStart="@dimen/bigger_margin"
63-
android:layout_marginTop="@dimen/activity_margin"
63+
android:layout_marginTop="@dimen/section_margin"
6464
android:text="@string/text"
6565
android:textAllCaps="true"
6666
android:textSize="@dimen/smaller_text_size" />
@@ -249,7 +249,7 @@
249249
android:layout_width="wrap_content"
250250
android:layout_height="wrap_content"
251251
android:layout_marginStart="@dimen/bigger_margin"
252-
android:layout_marginTop="@dimen/activity_margin"
252+
android:layout_marginTop="@dimen/section_margin"
253253
android:text="@string/startup"
254254
android:textAllCaps="true"
255255
android:textSize="@dimen/smaller_text_size" />
@@ -351,7 +351,7 @@
351351
android:layout_width="wrap_content"
352352
android:layout_height="wrap_content"
353353
android:layout_marginStart="@dimen/bigger_margin"
354-
android:layout_marginTop="@dimen/activity_margin"
354+
android:layout_marginTop="@dimen/section_margin"
355355
android:text="@string/saving_label"
356356
android:textAllCaps="true"
357357
android:textSize="@dimen/smaller_text_size" />
@@ -407,7 +407,7 @@
407407
android:layout_width="wrap_content"
408408
android:layout_height="wrap_content"
409409
android:layout_marginStart="@dimen/bigger_margin"
410-
android:layout_marginTop="@dimen/activity_margin"
410+
android:layout_marginTop="@dimen/section_margin"
411411
android:text="@string/widgets"
412412
android:textAllCaps="true"
413413
android:textSize="@dimen/smaller_text_size" />

0 commit comments

Comments
 (0)