Fix icon standard color

This commit is contained in:
J-Jamet
2021-03-05 21:01:48 +01:00
parent 8b88f72efc
commit fad852f00d

View File

@@ -51,7 +51,7 @@ abstract class IconFragment<T: IconImageDraw> : StylishFragment() {
super.onAttach(context)
// Retrieve the textColor to tint the icon
val ta = contextThemed?.obtainStyledAttributes(intArrayOf(R.attr.colorControlNormal))
val ta = contextThemed?.obtainStyledAttributes(intArrayOf(android.R.attr.textColor))
val tintColor = ta?.getColor(0, Color.BLACK) ?: Color.BLACK
ta?.recycle()