Skip to content

Commit

Permalink
Merge pull request #214 from dlsc-software-consulting-gmbh/fix-YearVi…
Browse files Browse the repository at this point in the history
…ewSkin-clip

Fix clipping issue in YearViewSkin header
  • Loading branch information
dlemmermann authored Nov 14, 2024
2 parents b4b16f1 + 9de6e12 commit ec41aed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public YearViewSkin(YearView yearView) {
Rectangle clip = new Rectangle();
clip.widthProperty().bind(yearView.widthProperty());
clip.heightProperty().bind(yearView.heightProperty());
yearView.setClip(clip);
header.setClip(clip);

InvalidationListener buildGridListener = obs -> buildGrid();
yearView.valueProperty().addListener(buildGridListener);
Expand Down

0 comments on commit ec41aed

Please sign in to comment.