From 9f1bc01e0e42a92cdfc483037df89ca28069abdd Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 28 Jan 2018 13:55:06 +0100 Subject: Change icon size --- src/main/kotlin/pl/treksoft/kvision/core/Widget.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Widget.kt b/src/main/kotlin/pl/treksoft/kvision/core/Widget.kt index 28b0a076..4ff7a640 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/Widget.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/Widget.kt @@ -355,7 +355,7 @@ open class Widget(classes: Set = setOf()) : StyledComponent() { ): Array { return if (icon != null) { if (icon.startsWith("fa-")) { - arrayOf(KVManager.virtualize(""), " " + label) + arrayOf(KVManager.virtualize(""), " " + label) } else { arrayOf(KVManager.virtualize(""), " " + label) } -- cgit