diff --git a/VDSSample/Protocols/PickerBase.swift b/VDSSample/Protocols/PickerBase.swift index e92ee64..cdb46f2 100644 --- a/VDSSample/Protocols/PickerBase.swift +++ b/VDSSample/Protocols/PickerBase.swift @@ -49,19 +49,19 @@ class SurfacePicker: PickerBase { } } -class TextPositionPicker: PickerBase { +class TextPositionPicker: PickerBase { init(){ super.init(items: [.left, .right]) } } -class TextSizePicker: PickerBase { +class TextSizePicker: PickerBase { init(){ super.init(items: [.small, .large]) } } -class FontWeightPicker: PickerBase { +class FontWeightPicker: PickerBase { init(){ super.init(items: [.regular, .bold]) }