Browse Source

Move codeviewer to 0.2.0-build128

pull/145/head
Nikolay Igotti 4 years ago
parent
commit
412213445a
  1. 4
      examples/codeviewer/build.gradle.kts
  2. 4
      examples/codeviewer/common/src/desktopMain/kotlin/org/jetbrains/codeviewer/platform/Selection.kt

4
examples/codeviewer/build.gradle.kts

@ -9,9 +9,9 @@ buildscript {
dependencies {
// __LATEST_COMPOSE_RELEASE_VERSION__
classpath("org.jetbrains.compose:compose-gradle-plugin:0.2.0-build124")
classpath("org.jetbrains.compose:compose-gradle-plugin:0.2.0-build128")
classpath("com.android.tools.build:gradle:4.0.1")
classpath(kotlin("gradle-plugin", version = "1.4.0"))
classpath(kotlin("gradle-plugin", version = "1.4.20"))
}
}

4
examples/codeviewer/common/src/desktopMain/kotlin/org/jetbrains/codeviewer/platform/Selection.kt

@ -12,6 +12,6 @@ actual fun SelectionContainer(children: @Composable () -> Unit) {
DesktopSelectionContainer(
selection = selection.value,
onSelectionChange = { selection.value = it },
children = children
content = children
)
}
}

Loading…
Cancel
Save