| 139 | } |
| 140 | |
| 141 | void EllipseDrawTool::tool_update() { |
| 142 | if(commitUpdate && objInfoBeingEdited) { |
| 143 | NetworkingObjects::NetObjOwnerPtr<CanvasComponentContainer>& containerPtr = objInfoBeingEdited->obj; |
| 144 | containerPtr->commit_update(drawP); |
| 145 | containerPtr->send_comp_update(drawP, false); |
| 146 | commitUpdate = false; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | bool EllipseDrawTool::prevent_undo_or_redo() { |
| 151 | return objInfoBeingEdited; |
nothing calls this directly
no test coverage detected