(Box start, Box box)
| 173 | protected void completeDrag(Box start, Box box) { |
| 174 | this.properties.removeFromMap(frameDrawing, "__ongoingDrag__"); |
| 175 | |
| 176 | PadsBox b = new PadsBox(start, box); |
| 177 | start.connect(b); |
| 178 | box.connect(b); |
| 179 | |
| 180 | Drawing.dirty(this); |
| 181 | } |
| 182 | |
| 183 | protected void showCompleteDrag(Box start, Box end) { |
| 184 | this.properties.putToMap(frameDrawing, "__ongoingDrag__", (box) -> { |
| 185 | |
| 186 | Rect f1 = frame(start); |
no test coverage detected