Skip to content

Commit e8f770c

Browse files
committed
Fix incorrectly set busy cursor.
1 parent ae6b531 commit e8f770c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalafx-extras/src/main/scala/org/scalafx/extras/BusyWorker.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ class BusyWorker private(val title: String,
409409
nodesToDisable.foreach { node =>
410410
node.disable = true
411411
// Use Option to guard against null values
412-
Option(node.scene()).map(_.root()).foreach(_.cursor = Cursor.Default)
412+
Option(node.scene()).map(_.root()).foreach(_.cursor = Cursor.Wait)
413413
}
414414
}
415415

0 commit comments

Comments
 (0)