From 9f6c115f50ef75a359e932762c8de2f279bdf543 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 18 Sep 2024 15:00:27 -0500 Subject: [PATCH] made internal since only group uses this Signed-off-by: Matt Bruce --- VDS/Components/Footnote/FootnoteItem.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/VDS/Components/Footnote/FootnoteItem.swift b/VDS/Components/Footnote/FootnoteItem.swift index ebd6e6ab..98233b3a 100644 --- a/VDS/Components/Footnote/FootnoteItem.swift +++ b/VDS/Components/Footnote/FootnoteItem.swift @@ -120,15 +120,15 @@ open class FootnoteItem: View { setNeedsUpdate() } } - - /// To set the widest symbol width from the symbol container in the group. - internal var symbolWidth: CGFloat? { didSet { setNeedsUpdate() } } - + //-------------------------------------------------- // MARK: - Private Properties //-------------------------------------------------- private var _width: Width? = nil - + + /// To set the widest symbol width from the symbol container in the group. + internal var symbolWidth: CGFloat? { didSet { setNeedsUpdate() } } + private lazy var itemStackView = UIStackView().with { $0.translatesAutoresizingMaskIntoConstraints = false $0.axis = .horizontal