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
5e8274b2
Commit
5e8274b2
authored
7 years ago
by
Sergey Luzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Bug 34141
parent
0f313626
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+8
-1
No files found.
cell/view/WorksheetView.js
View file @
5e8274b2
...
...
@@ -7155,7 +7155,14 @@
objectInfo
.
font
.
strikeout
=
textPr
.
Strikeout
;
objectInfo
.
font
.
subscript
=
textPr
.
VertAlign
==
AscCommon
.
vertalign_SubScript
;
objectInfo
.
font
.
superscript
=
textPr
.
VertAlign
==
AscCommon
.
vertalign_SuperScript
;
if
(
textPr
.
Color
)
{
if
(
textPr
.
Unifill
){
if
(
theme
){
textPr
.
Unifill
.
check
(
theme
,
this
.
objectRender
.
controller
.
getColorMap
());
}
var
oColor
=
textPr
.
Unifill
.
getRGBAColor
();
objectInfo
.
font
.
color
=
AscCommon
.
CreateAscColorCustom
(
oColor
.
R
,
oColor
.
G
,
oColor
.
B
);
}
else
if
(
textPr
.
Color
)
{
objectInfo
.
font
.
color
=
AscCommon
.
CreateAscColorCustom
(
textPr
.
Color
.
r
,
textPr
.
Color
.
g
,
textPr
.
Color
.
b
);
}
...
...
This diff is collapsed.
Click to expand it.
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