From b50fdc3e7b077fd5801fa274012cd53f3fe7bb2f Mon Sep 17 00:00:00 2001 From: Toni Sevener Date: Mon, 8 Jan 2024 09:48:32 -0600 Subject: [PATCH] Fix bugs from merge --- .../Editors/Common Views/Input Views/WKEditorInputView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift b/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift index 1a3e3b87a5a..9e6fead4fc2 100644 --- a/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift +++ b/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift @@ -6,6 +6,7 @@ protocol WKEditorInputViewDelegate: AnyObject { func didTapBold(isSelected: Bool) func didTapItalics(isSelected: Bool) func didTapTemplate(isSelected: Bool) + func didTapStrikethrough(isSelected: Bool) } class WKEditorInputView: WKComponentView { @@ -102,6 +103,7 @@ class WKEditorInputView: WKComponentView { private lazy var groupedToolbarView: WKEditorToolbarGroupedView = { let view = UINib(nibName: String(describing: WKEditorToolbarGroupedView.self), bundle: Bundle.module).instantiate(withOwner: nil).first as! WKEditorToolbarGroupedView + view.delegate = delegate view.translatesAutoresizingMaskIntoConstraints = false return view }()