File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,11 +90,13 @@ open class FlowFrameLayout: FrameLayout {
9090 }
9191 }
9292
93+ /*
9394 public override var isUserInteractionEnabled: Bool {
9495 didSet {
9596 stackLayout.frameLayouts.forEach { $0.isUserInteractionEnabled = isUserInteractionEnabled }
9697 }
9798 }
99+ */
98100
99101 public var stackCount : Int { stackLayout. frameLayouts. count }
100102 public var stacks : [ StackFrameLayout ] { stackLayout. frameLayouts as? [ StackFrameLayout ] ?? [ ] }
Original file line number Diff line number Diff line change @@ -17,11 +17,13 @@ open class GridFrameLayout: FrameLayout {
1717 /// Auto set number of columns or rows base on its size
1818 public var isAutoSize = false
1919
20+ /*
2021 public override var isUserInteractionEnabled: Bool {
2122 didSet {
2223 stackLayout.frameLayouts.forEach { $0.isUserInteractionEnabled = isUserInteractionEnabled }
2324 }
2425 }
26+ */
2527
2628 public override var isIntrinsicSizeEnabled : Bool {
2729 get { stackLayout. isIntrinsicSizeEnabled }
Original file line number Diff line number Diff line change @@ -94,9 +94,11 @@ open class StackFrameLayout: FrameLayout {
9494 didSet { frameLayouts. forEach { $0. allowContentHorizontalShrinking = allowContentHorizontalShrinking } }
9595 }
9696
97+ /*
9798 public override var isUserInteractionEnabled: Bool {
9899 didSet { frameLayouts.forEach { $0.isUserInteractionEnabled = isUserInteractionEnabled } }
99100 }
101+ */
100102
101103 override open var frame : CGRect {
102104 didSet { setNeedsLayout ( ) }
You can’t perform that action at this time.
0 commit comments