(float to)
| 75 | |
| 76 | } |
| 77 | |
| 78 | private void set(float to) { |
| 79 | |
| 80 | root.breadthFirst(root.both()).filter(x -> x instanceof TimeSlider).findFirst().ifPresent(x -> { |
| 81 | Rect r = x.properties.get(frame); |
| 82 | r.x = to; |
| 83 | Rect eventually = Callbacks.frameChange(x, r); |
| 84 | x.properties.put(frame, eventually); |
| 85 | }); |
| 86 | } |
| 87 | |
| 88 | private float get() { |
no test coverage detected