File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
kotlin/com/simplemobiletools/notes/pro/adapters Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ class OpenNoteAdapter(
74
74
val formattedText = note.getFormattedValue(context)
75
75
open_note_item_text.beGoneIf(formattedText.isNullOrBlank() || note.isLocked())
76
76
icon_lock.beVisibleIf(note.isLocked())
77
+ icon_lock.setImageDrawable(activity.resources.getColoredDrawableWithColor(R .drawable.ic_lock_vector, properPrimaryColor))
77
78
open_note_item_text.apply {
78
79
text = formattedText
79
80
setTextColor(textColor)
Original file line number Diff line number Diff line change 14
14
android : layout_width =" match_parent"
15
15
android : layout_height =" @dimen/open_note_popup_lock_size"
16
16
android : layout_below =" @+id/open_note_item_title"
17
- android : alpha =" 0.5"
18
17
android : importantForAccessibility =" no"
19
- android : scaleType = " centerInside "
18
+ android : padding = " @dimen/small_margin "
20
19
android : src =" @drawable/ic_lock_vector"
21
20
android : visibility =" gone" />
22
21
You can’t perform that action at this time.
0 commit comments