We're using a ComboBox to store the UnassignedTracks, and want to have the given track to show on the canvas when we select it in the ComboBox. Also trying to get it to skip to the last frame of that track, but it doesn't seem to be doing that. It seems to me that the method isn't being called at all even though I set it for onAction for that method.
edit: access doesn't seem to be the issue becuase when I use it it does actually get the track and now it will skip to that frame I want, but the points still will not draw even when I loop through each element in the track with
for(int i = 0; i < track.size(); i++) {
GraphicsContext drawingPen = canvasView.getGraphicsContext2D();
drawingPen.setFill(Color.TOMATO);
drawingPen.fillOval(track.getTimePointAtIndex(i).getX(),
track.getTimePointAtIndex(i).getY(), 5, 5);
System.out.println(track.getTimePointAtIndex(i));
}