diff options
Diffstat (limited to 'library/src/main/kotlin')
-rw-r--r-- | library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefColorPicker.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefColorPicker.kt b/library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefColorPicker.kt index 9917ffb..2ec0a34 100644 --- a/library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefColorPicker.kt +++ b/library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefColorPicker.kt @@ -58,13 +58,12 @@ class KPrefColorPicker(val builder: KPrefColorContract) : KPrefItemBase<Int>(bui * Default implementation of [KPrefColorContract] */ class KPrefColorBuilder(attributes: CoreAttributeContract, - titleRes: Int, + override var titleRes: Int, getter: () -> Int, setter: (value: Int) -> Unit ) : KPrefColorContract, BaseContract<Int> by BaseBuilder<Int>(attributes, titleRes, getter, setter), ColorContract by ColorBuilder() { override var showPreview: Boolean = true - override var titleRes: Int = -1 } override fun getType(): Int = R.id.kau_item_pref_color_picker |