Skip to content

Commit

Permalink
Fix for popovers.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Sep 29, 2022
1 parent b63ed17 commit 04ef73f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ private void showDetails(InputEvent evt, double x, double y) {
*/
if (control != null && getParent() != null) {
Callback<EntryDetailsParameter, Boolean> callback = control.getEntryDetailsCallback();
EntryDetailsParameter param = new EntryDetailsParameter(evt, control, getEntry(), this, getScene().getRoot(), x, y);
EntryDetailsParameter param = new EntryDetailsParameter(evt, control, getEntry(), this, this, x, y);
callback.call(param);
}
}
Expand Down

0 comments on commit 04ef73f

Please sign in to comment.