Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
d0faa15b
Commit
d0faa15b
authored
Mar 29, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #34283
parent
3afb94ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
31 deletions
+29
-31
word/Editor/Table.js
word/Editor/Table.js
+29
-31
No files found.
word/Editor/Table.js
View file @
d0faa15b
...
...
@@ -2600,36 +2600,6 @@ CTable.prototype =
{
oLogicDocument
.
Create_NewHistoryPoint
(
AscDFH
.
historydescription_Document_MoveInlineTable
);
// Обновляем координаты
// Здесь мы должны для первого рассчета оставить привязку относительно страницы, а после рассчета
// изменить привязку на старую, при этом пересчитав координаты так, чтобы картинка не изменила
// своего положения.
this
.
PositionH_Old
=
{
RelativeFrom
:
this
.
PositionH
.
RelativeFrom
,
Align
:
this
.
PositionH
.
Align
,
Value
:
this
.
PositionH
.
Value
};
this
.
PositionV_Old
=
{
RelativeFrom
:
this
.
PositionV
.
RelativeFrom
,
Align
:
this
.
PositionV
.
Align
,
Value
:
this
.
PositionV
.
Value
};
this
.
PositionH
.
RelativeFrom
=
c_oAscHAnchor
.
PageInternal
;
this
.
PositionH
.
Align
=
false
;
this
.
PositionH
.
Value
=
X
;
this
.
PositionV
.
RelativeFrom
=
c_oAscVAnchor
.
Page
;
this
.
PositionV
.
Align
=
false
;
this
.
PositionV
.
Value
=
Y
;
this
.
PageNum
=
PageNum
;
// Переносим привязку (если получается, что заносим таблицу саму в себя, тогда привязку не меняем)
var
NewDocContent
=
NearestPos
.
Paragraph
.
Parent
;
var
OldDocContent
=
this
.
Parent
;
...
...
@@ -2694,7 +2664,35 @@ CTable.prototype =
}
}
editor
.
WordControl
.
m_oLogicDocument
.
Recalculate
();
// Обновляем координаты
// Здесь мы должны для первого рассчета оставить привязку относительно страницы, а после рассчета
// изменить привязку на старую, при этом пересчитав координаты так, чтобы картинка не изменила
// своего положения.
oTargetTable
.
PositionH_Old
=
{
RelativeFrom
:
oTargetTable
.
PositionH
.
RelativeFrom
,
Align
:
oTargetTable
.
PositionH
.
Align
,
Value
:
oTargetTable
.
PositionH
.
Value
};
oTargetTable
.
PositionV_Old
=
{
RelativeFrom
:
oTargetTable
.
PositionV
.
RelativeFrom
,
Align
:
oTargetTable
.
PositionV
.
Align
,
Value
:
oTargetTable
.
PositionV
.
Value
};
oTargetTable
.
PositionH
.
RelativeFrom
=
c_oAscHAnchor
.
PageInternal
;
oTargetTable
.
PositionH
.
Align
=
false
;
oTargetTable
.
PositionH
.
Value
=
X
;
oTargetTable
.
PositionV
.
RelativeFrom
=
c_oAscVAnchor
.
Page
;
oTargetTable
.
PositionV
.
Align
=
false
;
oTargetTable
.
PositionV
.
Value
=
Y
;
oTargetTable
.
PageNum
=
PageNum
;
editor
.
WordControl
.
m_oLogicDocument
.
Recalculate
();
oTargetTable
.
Start_TrackTable
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment