Skip to content

Commit

Permalink
Fixes issue foliojs#340
Browse files Browse the repository at this point in the history
  • Loading branch information
msueyoshi-m committed Jul 30, 2024
1 parent 5b10bbd commit 3a3a814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tables/vhea.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import * as r from 'restructure';

// Vertical Header Table
export default new r.Struct({
version: r.uint16, // Version number of the Vertical Header Table
version: r.int32, // Version number of the Vertical Header Table
ascent: r.int16, // The vertical typographic ascender for this font
descent: r.int16, // The vertical typographic descender for this font
lineGap: r.int16, // The vertical typographic line gap for this font
advanceHeightMax: r.int16, // The maximum advance height measurement found in the font
advanceHeightMax: r.uint16, // The maximum advance height measurement found in the font
minTopSideBearing: r.int16, // The minimum top side bearing measurement found in the font
minBottomSideBearing: r.int16, // The minimum bottom side bearing measurement found in the font
yMaxExtent: r.int16,
Expand Down

0 comments on commit 3a3a814

Please sign in to comment.