Commit 205a175c authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=28261 - Выделенное мышкой и скопированное с...

http://bugzserver/show_bug.cgi?id=28261 - Выделенное мышкой и скопированное с интернет страницы изображение вставляется с подчеркиванием

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60817 954022d7-b5bf-4e40-9824-e11837661b57
parent fa7ada54
......@@ -6765,10 +6765,21 @@ PasteProcessor.prototype =
var oDrawingDocument = this.oDocument.DrawingDocument;
if(oTargetDocument && oDrawingDocument)
{
//если добавляем изображение в гиперссылку, то кладём его в отдельный ран и делаем не подчёркнутым
if(this.oCurHyperlink)
{
this._CommitElemToParagraph(this.oCurRun);
this.oCurRun = new ParaRun(this.oCurPar);
this.oCurRun.Pr.Underline = false;
}
var Drawing = CreateImageFromBinary(sSrc, nWidth, nHeight);
// oTargetDocument.DrawingObjects.Add( Drawing );
this._Paragraph_Add( Drawing );
if(this.oCurHyperlink)
this.oCurRun = new ParaRun(this.oCurPar);
//oDocument.Add_InlineImage(nWidth, nHeight, img);
}
......
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