diff --git a/core/src/main/kotlin/org/jetbrains/jewel/InputField.kt b/core/src/main/kotlin/org/jetbrains/jewel/InputField.kt index 1317ba717..cea7afeb3 100644 --- a/core/src/main/kotlin/org/jetbrains/jewel/InputField.kt +++ b/core/src/main/kotlin/org/jetbrains/jewel/InputField.kt @@ -93,7 +93,7 @@ internal fun InputField( value = value, modifier = modifier.then(backgroundModifier) .then(borderModifier) - .focusOutline(inputState, shape) + .appendIf(!undecorated) { focusOutline(inputState, shape) } .outline(inputState, outline, shape), onValueChange = onValueChange, enabled = enabled,