[Igarden-commit] Garden/source/PlanTool RectangleTool.cpp, 1.10.2.5, 1.10.2.6
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-04-16 10:15:28
|
Update of /cvsroot/igarden/Garden/source/PlanTool In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3943/source/PlanTool Modified Files: Tag: Release_branch_v1 RectangleTool.cpp Log Message: Fix problem with overlap warnings not showing up on material add Index: RectangleTool.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/PlanTool/RectangleTool.cpp,v retrieving revision 1.10.2.5 retrieving revision 1.10.2.6 diff -C2 -d -r1.10.2.5 -r1.10.2.6 *** RectangleTool.cpp 24 Feb 2008 23:24:06 -0000 1.10.2.5 --- RectangleTool.cpp 16 Apr 2008 10:15:22 -0000 1.10.2.6 *************** *** 157,163 **** MEMCHECK(path); newElem = _associatedPlanTool->CreatePathElement(view, path); AddElementToAction(newElem); FinishAndPostAction(wview); - path->RecalculateElementPoints(); _initial = true; _rotatedRect = false; --- 157,163 ---- MEMCHECK(path); newElem = _associatedPlanTool->CreatePathElement(view, path); + path->RecalculateElementPoints(); AddElementToAction(newElem); FinishAndPostAction(wview); _initial = true; _rotatedRect = false; *************** *** 243,249 **** MEMCHECK(path); newElem = _associatedPlanTool->CreatePathElement(view, path); AddElementToAction(newElem); FinishAndPostAction(wview); - path->RecalculateElementPoints(); _initial = true; _rotatedRect = false; --- 243,249 ---- MEMCHECK(path); newElem = _associatedPlanTool->CreatePathElement(view, path); + path->RecalculateElementPoints(); AddElementToAction(newElem); FinishAndPostAction(wview); _initial = true; _rotatedRect = false; |