From b0b927d56a2519a1182c2ce66bd20db0fca1c894 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 4 Aug 2022 07:19:11 -0500 Subject: [PATCH] updated protocol Signed-off-by: Matt Bruce --- VDSSample/Protocols/PickerBase.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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]) }