From 18f922cd208cc7910affc000b4738f8e317cced8 Mon Sep 17 00:00:00 2001 From: Jarrio Date: Fri, 17 May 2024 10:44:22 +0100 Subject: [PATCH] Update Style.hx --- haxe/ui/styles/Style.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/haxe/ui/styles/Style.hx b/haxe/ui/styles/Style.hx index ad57ffdea..5583fdc43 100644 --- a/haxe/ui/styles/Style.hx +++ b/haxe/ui/styles/Style.hx @@ -170,6 +170,8 @@ class Style { if (!hasLeftBorder && !hasRightBorder && !hasTopBorder && !hasBottomBorder) { t = StyleBorderType.None; } else if (hasLeftBorder && hasRightBorder && hasTopBorder && hasBottomBorder && borderColoursEqual) { + borderSize = borderLeftSize; + borderColor = borderLeftColor; t = StyleBorderType.Full; } return t;