Commit 6e2d0067 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Bug 19384 - Зависает документ при вставке в него таблицы из *xls файла.

Изменен размер максимального размера области для вставки таблицы(ширина страницы + маргины)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49391 954022d7-b5bf-4e40-9824-e11837661b57
parent b2bba3c4
......@@ -2138,7 +2138,7 @@ function PasteProcessor(api, bUploadImage, bUploadFonts, bNested)
this.bInBlock = null;
//������ �������� � ������� ��������� �������� ��� ������
this.dMaxWidth = Page_Width;
this.dMaxWidth = Page_Width - X_Left_Margin - X_Right_Margin;
//���������� ������(�������� ��� ������� ������� �������, ������ ��� ������� ����������� ������ � ��������� � ������� ����� �������� ���� �����������)
this.dScaleKoef = 1;
this.bUseScaleKoef = false;
......@@ -3864,6 +3864,8 @@ PasteProcessor.prototype =
},
_ExecuteTable : function(tableNode, node, table, aSumGrid, aColsCountByRow, pPr, bUseScaleKoef, dScaleKoef)
{
//из-за проблем со вставкой больших таблиц, не вставляем tbllayout_AutoFit
table.Set_TableLayout(tbllayout_Fixed);
//Pr
var Pr = table.Pr;
var defaultView = tableNode.ownerDocument.defaultView;
......
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