From b2882d4a728da9815ff226b5d91f5dddbeb2ce9b Mon Sep 17 00:00:00 2001 From: Ivan “CLOVIS” Canet Date: Thu, 16 Apr 2026 19:41:30 +0000 Subject: [PATCH] feat(renderer): Highlight overloads by giving each its own background --- renderer/src/jvmMain/kotlin/renderer3/PlatformSpecific.kt | 5 +++++ 1 file(s) changed, 5 insertion(s)(+), 0 deletion(s)(-) diff --git a/renderer/src/jvmMain/kotlin/renderer3/PlatformSpecific.kt b/renderer/src/jvmMain/kotlin/renderer3/PlatformSpecific.kt --- a/renderer/src/jvmMain/kotlin/renderer3/PlatformSpecific.kt +++ b/renderer/src/jvmMain/kotlin/renderer3/PlatformSpecific.kt @@ -39,9 +39,14 @@ internal fun RenderingContext.buildPlatformDivergent(node: ContentDivergentGroup) { for (instance in node.children) { + appendLine() + appendLine("
") + for (group in instance.children) { buildPlatformsGroup(group) } + + appendLine("
") } } -- tangled.sh