We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507f5d4 commit 6e5f8a6Copy full SHA for 6e5f8a6
ui/kotlinx-coroutines-javafx/src/test/kotlin/guide/example-ui-advanced-01.kt
@@ -65,11 +65,11 @@ class ExampleApp : Application() {
65
fun setup(hello: Text, fab: Circle) {
66
fab.onMouseClicked = EventHandler {
67
println("Before launch")
68
- launch(UI) {
+ launch(UI) {
69
println("Inside coroutine")
70
delay(100)
71
println("After delay")
72
- }
+ }
73
println("After launch")
74
}
75
0 commit comments