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
b37a4e74
Commit
b37a4e74
authored
Feb 13, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #33672. Reworked applying a text properties to CMathBase class.
parent
e9d69513
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
19 deletions
+5
-19
word/Math/base.js
word/Math/base.js
+5
-19
No files found.
word/Math/base.js
View file @
b37a4e74
...
@@ -970,24 +970,10 @@ CMathBase.prototype.Apply_TextPr = function(TextPr, IncFontSize, ApplyToAll)
...
@@ -970,24 +970,10 @@ CMathBase.prototype.Apply_TextPr = function(TextPr, IncFontSize, ApplyToAll)
{
{
this
.
Apply_TextPrToCtrPr
(
TextPr
,
IncFontSize
,
ApplyToAll
);
this
.
Apply_TextPrToCtrPr
(
TextPr
,
IncFontSize
,
ApplyToAll
);
// нужно пройтись по всем элементам и вложенным формулам в том числе, чтобы пересчитать ctrPrp у всех мат объектов
for
(
var
nIndex
=
0
;
nIndex
<
this
.
Content
.
length
;
++
nIndex
)
// для некоторых формул (например, для итератора в Limit) важно учесть собственные настройки (ArgSize), а не только родительские, поэтому и нужно профтись по всем inline-формулам
for
(
var
i
=
0
;
i
<
this
.
nRow
;
i
++
)
for
(
var
j
=
0
;
j
<
this
.
nCol
;
j
++
)
if
(
!
this
.
elements
[
i
][
j
].
IsJustDraw
())
this
.
elements
[
i
][
j
].
Apply_TextPr
(
TextPr
,
IncFontSize
,
ApplyToAll
);
// такая ситуация может возникнуть при добавлении элементов из меню, и чтобы применились текстовые настройки при вставке нужно пройтись по контентам
// a Resize произойдет позже, после вставки = > массив this.elements заполнится позднее
if
(
this
.
nRow
==
0
&&
this
.
nCol
==
0
)
{
for
(
var
i
=
0
;
i
<
this
.
Content
.
length
;
i
++
)
{
{
this
.
Content
[
i
].
Apply_TextPr
(
TextPr
,
IncFontSize
,
ApplyToAll
);
this
.
Content
[
nIndex
].
Apply_TextPr
(
TextPr
,
IncFontSize
,
ApplyToAll
);
}
}
}
};
};
CMathBase
.
prototype
.
Apply_TextPrToCtrPr
=
function
(
TextPr
,
IncFontSize
,
ApplyToAll
)
CMathBase
.
prototype
.
Apply_TextPrToCtrPr
=
function
(
TextPr
,
IncFontSize
,
ApplyToAll
)
{
{
...
...
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