Commit 88f8c597 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

custom shapes drawing on overlay bug

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60016 954022d7-b5bf-4e40-9824-e11837661b57
parent a375e697
...@@ -774,6 +774,9 @@ CShapeDrawer.prototype = ...@@ -774,6 +774,9 @@ CShapeDrawer.prototype =
if (mode == "none" || this.bIsNoFillAttack) if (mode == "none" || this.bIsNoFillAttack)
return; return;
if (this.Graphics.IsTrack)
this.Graphics.m_oOverlay.ClearAll = true;
if (this.Graphics.IsSlideBoundsCheckerType === true) if (this.Graphics.IsSlideBoundsCheckerType === true)
return; return;
...@@ -1118,6 +1121,9 @@ CShapeDrawer.prototype = ...@@ -1118,6 +1121,9 @@ CShapeDrawer.prototype =
if (this.bIsNoStrokeAttack) if (this.bIsNoStrokeAttack)
return; return;
if (this.Graphics.IsTrack)
this.Graphics.m_oOverlay.ClearAll = true;
if (null != this.OldLineJoin && !this.IsArrowsDrawing) if (null != this.OldLineJoin && !this.IsArrowsDrawing)
{ {
switch (this.Ln.Join.type) switch (this.Ln.Join.type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment