From 1ba50e9d6422dd42e24eb611d129254d4590e9ff Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 8 Dec 2022 14:10:41 -0600 Subject: [PATCH] updated border width for highlighted Signed-off-by: Matt Bruce --- VDS/Components/RadioBox/RadioBox.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Components/RadioBox/RadioBox.swift b/VDS/Components/RadioBox/RadioBox.swift index 2ffab628..4f7858fb 100644 --- a/VDS/Components/RadioBox/RadioBox.swift +++ b/VDS/Components/RadioBox/RadioBox.swift @@ -313,7 +313,7 @@ open class RadioBoxBase: Control, BinaryColorable, Accessable, DataTrackable{ //get the colors let backgroundColor = backgroundColorConfiguration.getColor(self) let borderColor = borderColorConfiguration.getColor(self) - let borderWidth = isSelected ? selectorBorderWidthSelected : selectorBorderWidth + let borderWidth = isSelected || isHighlighted ? selectorBorderWidthSelected : selectorBorderWidth selectorView.backgroundColor = backgroundColor selectorView.layer.borderColor = borderColor.cgColor