Commit d2585d39 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35576

parent ccbd6ad5
...@@ -1133,7 +1133,8 @@ Slide.prototype = ...@@ -1133,7 +1133,8 @@ Slide.prototype =
} }
if(bCoMarksDraw){ if(bCoMarksDraw){
g.transform3(this.notesShape.transformText); g.transform3(this.notesShape.transformText);
var Width = this.notesShape.txBody.content.XLimit; var Width = this.notesShape.txBody.content.XLimit - 2;
Width = Math.max(Width, 1);
var Height = this.notesShape.txBody.content.Get_SummaryHeight(); var Height = this.notesShape.txBody.content.Get_SummaryHeight();
g.DrawLockObjectRect(oLock.Get_Type(), 0, 0, Width, Height); g.DrawLockObjectRect(oLock.Get_Type(), 0, 0, Width, Height);
} }
......
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