JFXtras / jfxtras

A supporting library for JavaFX, containing helper classes, extended layouts, controls and other interesting widgets.
http://jfxtras.org
Other
599 stars 123 forks source link

Fix to allow double click action on Appointment when AllowDragging is false #38

Closed SamuelOC closed 9 years ago

SamuelOC commented 9 years ago

When AllowDragging is set to false on Agenda the ActionCallBack on the Agenda can never be called on double click because the method returns before the double click is handled. Resolved this by moving the double click code to before the return on allowDragging check. This will not influence current dragging functionality.

tbee commented 9 years ago

Thanks!