From dd41d887f679b3bb92e75845270d9981f7443ee9 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 5 Jun 2020 14:49:20 +0200 Subject: Change access modifier of getSnStyle function. --- src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt b/src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt index 9da4f1d1..ace11158 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt @@ -374,7 +374,7 @@ abstract class StyledComponent { * @return the list of attributes and their values */ @Suppress("ComplexMethod", "LongMethod") - protected open fun getSnStyle(): List { + open fun getSnStyle(): List { val cacheKey = getCacheKey() return globalStyleCache[cacheKey] ?: run { val snstyle = mutableListOf() -- cgit