diff --git a/CHANGES.md b/CHANGES.md index 617b402252..12991c6f8e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -35,6 +35,7 @@ - Fix problem with z positioning of elements [Taiga #5014](https://tree.taiga.io/project/penpot/issue/5014) - Fix problem in Firefox with scroll jumping when changin pages [#3052](https://github.com/penpot/penpot/issues/3052) - Fix nested frame interaction created flow in wrong frame [Taiga #5043](https://tree.taiga.io/project/penpot/issue/5043) +- Font-Kerning does not work on Artboard Export to PNG/JPG/PDF [#3029](https://github.com/penpot/penpot/issues/3029) ### :heart: Community contributions by (Thank you!) - To @ondrejkonec: for contributing to the code with: diff --git a/exporter/src/app/browser.cljs b/exporter/src/app/browser.cljs index b37f0ac6eb..3cbcf2b988 100644 --- a/exporter/src/app/browser.cljs +++ b/exporter/src/app/browser.cljs @@ -100,7 +100,8 @@ (def browser-pool-factory (letfn [(create [] - (p/let [browser (.launch pw/chromium) + (p/let [opts #js {:args #js ["--font-render-hinting=none"]} + browser (.launch pw/chromium opts) id (swap! pool-browser-id inc)] (l/info :origin "factory" :action "create" :browser-id id) (unchecked-set browser "__id" id)