From 239d6f66e31d1296be9f360fb74f20f6db7e51ed Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 16 Aug 2022 12:06:09 -0500 Subject: [PATCH] updated for typography Signed-off-by: Matt Bruce --- VDSSample/Protocols/PickerBase.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VDSSample/Protocols/PickerBase.swift b/VDSSample/Protocols/PickerBase.swift index 4e19de4..1c18226 100644 --- a/VDSSample/Protocols/PickerBase.swift +++ b/VDSSample/Protocols/PickerBase.swift @@ -56,13 +56,13 @@ class TextPositionPicker: PickerBase { } } -class TextSizePicker: PickerBase { +class TextSizePicker: PickerBase { init(){ super.init(items: [.small, .large]) } } -class FontWeightPicker: PickerBase { +class FontWeightPicker: PickerBase { init(){ super.init(items: [.regular, .bold]) }