We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fec8fb commit 58f72cfCopy full SHA for 58f72cf
examples/drawtext.nim
@@ -60,11 +60,11 @@ proc makeAttributedString =
60
61
attrstr.addUnattributed("and control over OpenType features such as ligatures (for instance, ")
62
let otf = newOpenTypeFeatures()
63
- otf.add("smcp", off)
+ otf.add("liga", off)
64
let attr10 = newFeaturesAttribute(otf)
65
attrstr.addWithAttributes("afford", attr10)
66
attrstr.addUnattributed(" vs. ")
67
- otf.add("smcp", on)
+ otf.add("liga", on)
68
let attr11 = newFeaturesAttribute(otf)
69
attrstr.addWithAttributes("afford", attr11)
70
0 commit comments