Fix settings crashes before Lollipop

This commit is contained in:
inorichi 2017-05-15 16:32:53 +02:00
parent 0da2f91771
commit 55be9b9ca5
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package eu.kanade.tachiyomi.ui.setting
import android.content.Context
import android.support.graphics.drawable.VectorDrawableCompat
import android.support.v4.graphics.drawable.DrawableCompat
import android.support.v7.preference.*
import eu.kanade.tachiyomi.widget.preference.IntListPreference
@ -83,7 +84,7 @@ var Preference.titleRes: Int
var Preference.iconRes: Int
get() = 0 // set only
set(value) { setIcon(value) }
set(value) { icon = VectorDrawableCompat.create(context.resources, value, context.theme) }
var Preference.summaryRes: Int
get() = 0 // set only

View File

@ -12,6 +12,7 @@
<color name="dividerLight">@color/md_black_1000_12</color>
<color name="rippleColorLight">@color/md_black_1000_12</color>
<color name="preference_fallback_accent_color">@color/colorAccentLight</color>
<color name="statusBarLight">@color/md_grey_300</color>
<color name="appBarLight">@color/md_grey_100</color>