removed prints
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
0842998c97
commit
84ccbac762
@ -133,7 +133,6 @@ open class CheckboxBase: Control, Accessable, DataTrackable, BinaryColorable, Er
|
|||||||
_showError = newValue
|
_showError = newValue
|
||||||
didChange()
|
didChange()
|
||||||
}
|
}
|
||||||
print("checkbox showError:\(_showError)")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,6 @@ import Combine
|
|||||||
public class RadioSwatch: RadioSwatchBase{
|
public class RadioSwatch: RadioSwatchBase{
|
||||||
//for groups allows "toggle"
|
//for groups allows "toggle"
|
||||||
open override func toggle() {
|
open override func toggle() {
|
||||||
print("toggle: \(text)")
|
|
||||||
isSelected.toggle()
|
isSelected.toggle()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -157,7 +156,6 @@ open class RadioSwatchBase: Control, Accessable, DataTrackable, BinaryColorable
|
|||||||
setAccessibilityHint()
|
setAccessibilityHint()
|
||||||
setAccessibilityValue(isSelected)
|
setAccessibilityValue(isSelected)
|
||||||
setAccessibilityLabel(isSelected)
|
setAccessibilityLabel(isSelected)
|
||||||
print("updateView: \(text)")
|
|
||||||
layer.setNeedsDisplay()
|
layer.setNeedsDisplay()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,7 +194,6 @@ open class RadioSwatchBase: Control, Accessable, DataTrackable, BinaryColorable
|
|||||||
}
|
}
|
||||||
|
|
||||||
open override func draw(_ layer: CALayer, in ctx: CGContext) {
|
open override func draw(_ layer: CALayer, in ctx: CGContext) {
|
||||||
print("draw:\(text)")
|
|
||||||
let drawOuterBorder = isSelected || isHighlighted
|
let drawOuterBorder = isSelected || isHighlighted
|
||||||
let backgroundColor = UIColor.clear
|
let backgroundColor = UIColor.clear
|
||||||
let borderColor = isSelected ? borderColorConfiguration.getColor(self) : .clear
|
let borderColor = isSelected ? borderColorConfiguration.getColor(self) : .clear
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user