Skip to content

Commit

Permalink
font-manager: add props on FontDescriptor.show
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoRFS committed Jun 23, 2020
1 parent 84f50ac commit 505fde9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/reason-font-manager/FontDescriptor.re
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ let show = (v: t) => {
++ " - Path: "
++ v.path
++ "\n"
++ " - PostscriptName: "
++ v.postscriptName
++ "\n"
++ " - Family: "
++ v.family
++ "\n"
Expand All @@ -42,6 +45,9 @@ let show = (v: t) => {
++ " - Width: "
++ FontWidth.show(v.width)
++ "\n"
++ " - Italic: "
++ string_of_bool(v.italic)
++ "\n"
++ " - Monospace: "
++ string_of_bool(v.monospace)
++ "\n";
Expand Down

0 comments on commit 505fde9

Please sign in to comment.