Skip to content

Commit c7b3573

Browse files
committed
fix(editor): use setColor instead only color
1 parent 4708b3a commit c7b3573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/impl/src/main/java/com/itsaky/androidide/editor/ui/EditorActionsMenu.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ open class EditorActionsMenu(val editor: IDEEditor) :
198198
val drawable = GradientDrawable()
199199
drawable.shape = GradientDrawable.RECTANGLE
200200
drawable.cornerRadius = SizeUtils.dp2px(28f).toFloat() // Recommeneded size is 28dp
201-
drawable.color = editor.context.resolveAttr(R.attr.colorSurface)
201+
drawable.setColor(editor.context.resolveAttr(R.attr.colorSurface))
202202
drawable.setStroke(SizeUtils.dp2px(1f), editor.context.resolveAttr(R.attr.colorOutline))
203203
list.background = drawable
204204
}

0 commit comments

Comments
 (0)