mirror of
https://github.com/enso-org/enso.git
synced 2025-01-03 19:21:54 +03:00
8ca4e2b003
Fixes [181641027](https://www.pivotaltracker.com/story/show/181641027). There are new methods of text::Area for making some letters bolder, without moving them nor any other letters in the line. Tested on DejaVuSans text: ![image](https://user-images.githubusercontent.com/3919101/162199723-524f7560-535f-4c98-bcb4-6b760ad8cb04.png) ![image](https://user-images.githubusercontent.com/3919101/162199806-e6582c56-3071-4653-8ad2-114df86cd6b7.png) ![image](https://user-images.githubusercontent.com/3919101/162199880-1836e902-8663-4696-bcb7-2b15c3c243c6.png) On MacOS: <img width="824" alt="Screenshot 2022-04-07 at 14 54 40" src="https://user-images.githubusercontent.com/3919101/162203730-ffda3096-7aab-443f-a45a-bfa18784ba36.png"> <img width="379" alt="Screenshot 2022-04-07 at 14 54 52" src="https://user-images.githubusercontent.com/3919101/162203751-f5ca2e26-fdb6-4521-9821-999111b80ac0.png"> <img width="160" alt="Screenshot 2022-04-07 at 14 54 58" src="https://user-images.githubusercontent.com/3919101/162203769-3c367f81-67bb-48aa-994c-42eeb131017e.png">
25 lines
691 B
TOML
25 lines
691 B
TOML
[package]
|
|
name = "ensogl-text"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../frp" }
|
|
enso-prelude = { path = "../../../prelude"}
|
|
enso-shapely = { path = "../../../shapely"}
|
|
enso-text = { path = "../../../text" }
|
|
enso-types = { path = "../../../types" }
|
|
ensogl-core = { path = "../../core" }
|
|
ensogl-text-embedded-fonts = { path = "embedded-fonts" }
|
|
ensogl-text-msdf-sys = { path = "msdf-sys" }
|
|
ensogl-hardcoded-theme = { path = "../../app/theme/hardcoded" }
|
|
const_format = "0.2.22"
|
|
xi-rope = { version = "0.3.0" }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = { version = "0.3.8" }
|