Skip to content

Commit

Permalink
Fixed logging output for the suspendUpdates property in DayViewSkin.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Oct 5, 2022
1 parent b645945 commit 6bdbf09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public DayViewSkin(T view) {
}
});

view.suspendUpdatesProperty().addListener(evt -> loadData("suspend updates was set to false"));
view.suspendUpdatesProperty().addListener(evt -> loadData("suspend updates was changed to " + view.isSuspendUpdates()));
view.getCalendars().addListener((Observable obs) -> loadData("list of calendars changed"));

final InvalidationListener styleLinesListener = it -> updateLineStyling();
Expand Down

0 comments on commit 6bdbf09

Please sign in to comment.