Skip to content

Commit

Permalink
Fix incorrectly set busy cursor.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsacha committed Oct 27, 2018
1 parent ae6b531 commit e8f770c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class BusyWorker private(val title: String,
nodesToDisable.foreach { node =>
node.disable = true
// Use Option to guard against null values
Option(node.scene()).map(_.root()).foreach(_.cursor = Cursor.Default)
Option(node.scene()).map(_.root()).foreach(_.cursor = Cursor.Wait)
}
}

Expand Down

0 comments on commit e8f770c

Please sign in to comment.