From d80c5d6538b168be7e10166a4af3f71c5e6fac87 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Tue, 3 Mar 2020 15:49:05 +0100 Subject: Fix TextShadow constructor --- src/main/kotlin/pl/treksoft/kvision/core/Css.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Css.kt b/src/main/kotlin/pl/treksoft/kvision/core/Css.kt index e2108136..a1810c2d 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/Css.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/Css.kt @@ -677,7 +677,7 @@ class TextDecoration( * @param blurRadius the blur radius * @param color color of the shadow */ -class TextShadow private constructor( +class TextShadow( private val hShadow: CssSize? = null, private val vShadow: CssSize? = null, private val blurRadius: CssSize? = null, private val color: Color? = null ) { -- cgit