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
857313ec
Commit
857313ec
authored
Aug 07, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #35513. Fixed problem with text properties after adding a new paragraph.
parent
7cf5e328
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
+17
-8
word/Editor/Paragraph.js
word/Editor/Paragraph.js
+17
-8
No files found.
word/Editor/Paragraph.js
View file @
857313ec
...
...
@@ -10183,8 +10183,11 @@ Paragraph.prototype.Split = function(NewParagraph, Pos)
NewParagraph
.
Correct_Content
();
// Копируем все настройки в новый параграф. Делаем это после того как определили контент параграфов.
NewParagraph
.
TextPr
.
Value
=
this
.
TextPr
.
Value
.
Copy
();
// У нового параграфа настройки конца параграфа делаем, как у старого (происходит в функции CopyPr), а у старого
// меняем их на настройки текущего рана.
this
.
CopyPr
(
NewParagraph
);
this
.
TextPr
.
Clear_Style
();
this
.
TextPr
.
Apply_TextPr
(
TextPr
);
// Если на данном параграфе заканчивалась секция, тогда переносим конец секции на новый параграф
var
SectPr
=
this
.
Get_SectionPr
();
...
...
@@ -10256,19 +10259,27 @@ Paragraph.prototype.Concat = function(Para)
*/
Paragraph
.
prototype
.
Continue
=
function
(
NewParagraph
)
{
// Копируем настройки параграфа
this
.
CopyPr
(
NewParagraph
);
var
TextPr
;
if
(
this
.
bFromDocument
)
if
(
this
.
Is_Empty
()
)
{
TextPr
=
this
.
Get_TextPr
(
this
.
Get_EndPos
(
false
));
}
else
{
TextPr
=
this
.
Get_TextPr
(
this
.
Get_EndPos2
(
false
));
var
EndPos
=
this
.
Get_EndPos2
(
false
);
var
CurPos
=
this
.
Get_ParaContentPos
(
false
,
false
);
this
.
Set_ParaContentPos
(
EndPos
,
true
,
-
1
,
-
1
);
TextPr
=
this
.
Get_TextPr
(
this
.
Get_ParaContentPos
(
false
,
false
));
this
.
Set_ParaContentPos
(
CurPos
,
false
,
-
1
,
-
1
,
false
);
}
// Копируем настройки параграфа
// У нового параграфа настройки конца параграфа делаем, как у старого (происходит в функции CopyPr), а у старого
// меняем их на настройки текущего рана.
this
.
CopyPr
(
NewParagraph
);
this
.
TextPr
.
Clear_Style
();
this
.
TextPr
.
Apply_TextPr
(
TextPr
);
NewParagraph
.
Internal_Content_Add
(
0
,
new
ParaRun
(
NewParagraph
));
NewParagraph
.
Correct_Content
();
NewParagraph
.
MoveCursorToStartPos
(
false
);
...
...
@@ -10282,8 +10293,6 @@ Paragraph.prototype.Continue = function(NewParagraph)
NewParagraph
.
Content
[
Pos
].
Set_Pr
(
TextPr
.
Copy
());
}
// Копируем настройки знака конца параграфа
NewParagraph
.
TextPr
.
Value
=
this
.
TextPr
.
Value
.
Copy
();
};
//----------------------------------------------------------------------------------------------------------------------
// Undo/Redo функции
...
...
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