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
577fead4
Commit
577fead4
authored
Sep 01, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hiding highlight of the comments in view mode in review.
parent
86ed0586
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
word/Editor/Paragraph.js
word/Editor/Paragraph.js
+2
-2
No files found.
word/Editor/Paragraph.js
View file @
577fead4
...
...
@@ -1484,11 +1484,11 @@ Paragraph.prototype.Internal_Draw_3 = function(CurPage, pGraphics, Pr)
var
DocumentComments
=
LogicDocument
.
Comments
;
var
Page_abs
=
this
.
Get_AbsolutePage
(
CurPage
);
var
DrawComm
=
(
DocumentComments
.
Is_Use
()
&&
true
!==
LogicDocument
.
IsViewMode
());
var
DrawComm
=
(
DocumentComments
.
Is_Use
()
&&
true
!==
LogicDocument
.
IsViewMode
()
&&
true
!==
this
.
LogicDocument
.
IsViewModeInReview
()
);
var
DrawFind
=
LogicDocument
.
SearchEngine
.
Selection
;
var
DrawColl
=
(
undefined
===
pGraphics
.
RENDERER_PDF_FLAG
?
false
:
true
);
var
DrawMMFields
=
(
this
.
LogicDocument
&&
true
===
this
.
LogicDocument
.
Is_HightlightMailMergeFields
()
?
true
:
false
);
var
DrawSolvedComments
=
(
DocumentComments
.
IsUseSolved
()
&&
true
!==
LogicDocument
.
IsViewMode
());
var
DrawSolvedComments
=
(
DocumentComments
.
IsUseSolved
()
&&
true
!==
LogicDocument
.
IsViewMode
()
&&
true
!==
this
.
LogicDocument
.
IsViewModeInReview
()
);
PDSH
.
Reset
(
this
,
pGraphics
,
DrawColl
,
DrawFind
,
DrawComm
,
DrawMMFields
,
this
.
Get_EndInfoByPage
(
CurPage
-
1
),
DrawSolvedComments
);
...
...
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