Skip to content

Commit

Permalink
Fix bugs from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tonisevener committed Jan 8, 2024
1 parent 1bc8638 commit b50fdc3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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
}()
Expand Down

0 comments on commit b50fdc3

Please sign in to comment.