mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 03:51:21 -05:00
🐛 Fix problem with text displacement in Safari
This commit is contained in:
parent
6e36f66dde
commit
5aa68c7052
3 changed files with 25 additions and 3 deletions
|
@ -51,8 +51,8 @@
|
|||
[:> :g group-props
|
||||
(for [[index data] (d/enumerate position-data)]
|
||||
(let [props (-> #js {:x (mth/round (:x data))
|
||||
:y (mth/round (:y data))
|
||||
:dominantBaseline "ideographic"
|
||||
:y (mth/round (- (:y data) (:height data)))
|
||||
:alignmentBaseline "text-before-edge"
|
||||
:style (-> #js {:fontFamily (:font-family data)
|
||||
:fontSize (:font-size data)
|
||||
:fontWeight (:font-weight data)
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
[app.util.timers :as timers]
|
||||
[app.util.webapi :as wapi]
|
||||
[beicon.core :as rx]
|
||||
[debug :refer [debug?]]
|
||||
[okulary.core :as l]
|
||||
[rumext.alpha :as mf]))
|
||||
|
||||
|
@ -224,4 +225,22 @@
|
|||
|
||||
(when show-svg-text?
|
||||
[:g.text-svg {:pointer-events "none"}
|
||||
[:& svg/text-shape {:shape shape}]])]]))
|
||||
[:& svg/text-shape {:shape shape}]])
|
||||
|
||||
(when (debug? :text-outline)
|
||||
(for [data (:position-data shape)]
|
||||
(let [{:keys [x y width height]} data]
|
||||
[:*
|
||||
;; Text fragment bounding box
|
||||
[:rect {:x x
|
||||
:y (- y height)
|
||||
:width width
|
||||
:height height
|
||||
:style {:fill "none" :stroke "red"}}]
|
||||
|
||||
;; Text baselineazo
|
||||
[:line {:x1 (mth/round x)
|
||||
:y1 (mth/round (- (:y data) (:height data)))
|
||||
:x2 (mth/round (+ x width))
|
||||
:y2 (mth/round (- (:y data) (:height data)))
|
||||
:style {:stroke "blue"}}]])))]]))
|
||||
|
|
|
@ -46,6 +46,9 @@
|
|||
|
||||
;; When active we can check in the browser the export values
|
||||
:show-export-metadata
|
||||
|
||||
;; Show text fragments outlines
|
||||
:text-outline
|
||||
})
|
||||
|
||||
;; These events are excluded when we activate the :events flag
|
||||
|
|
Loading…
Add table
Reference in a new issue