aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/core/StyledComponent.kt2
1 files changed, 1 insertions, 1 deletions
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<StringPair> {
+ open fun getSnStyle(): List<StringPair> {
val cacheKey = getCacheKey()
return globalStyleCache[cacheKey] ?: run {
val snstyle = mutableListOf<StringPair>()