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
a57b12c0
Commit
a57b12c0
authored
8 years ago
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fonts without os2 table
parent
6841985c
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
common/FontsFreeType/FontManager.js
common/FontsFreeType/FontManager.js
+1
-1
No files found.
common/FontsFreeType/FontManager.js
View file @
a57b12c0
...
...
@@ -393,7 +393,7 @@ function LoadFontFile(library, stream_index, name, faceindex, fontManager)
font
.
m_lLineHeight
=
face
.
height
;
// flag for use always typo (os2 spec)
var
bIsUseTypeAttack
=
(
(
face
.
os2
.
fsSelection
&
128
)
==
128
)
?
true
:
false
;
var
bIsUseTypeAttack
=
(
face
.
os2
&&
((
face
.
os2
.
fsSelection
&
128
)
==
128
)
)
?
true
:
false
;
if
(
fontManager
.
IsCellMode
)
bIsUseTypeAttack
=
false
;
...
...
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