diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-21 13:33:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-21 13:33:44 +0200 |
| commit | 8085affdb109123f68059e37beb2236a1f94de1a (patch) | |
| tree | 22bd3469568373217e94ebcd8c2368d2f3ce45fa /doc/classes/TextServer.xml | |
| parent | 2717f583a4de73617fe8ae049e4313ac843d6bb0 (diff) | |
| parent | c931906af71ffdc49dd10611bb4ac69febdca559 (diff) | |
| download | redot-engine-8085affdb109123f68059e37beb2236a1f94de1a.tar.gz | |
Merge pull request #52890 from bruvzg/rtl_effects_connected
Improve connected grapheme handling in the RTL CharFX.
Diffstat (limited to 'doc/classes/TextServer.xml')
| -rw-r--r-- | doc/classes/TextServer.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/TextServer.xml b/doc/classes/TextServer.xml index 661c4f05ef..7fe9278f2c 100644 --- a/doc/classes/TextServer.xml +++ b/doc/classes/TextServer.xml @@ -1247,6 +1247,12 @@ <constant name="GRAPHEME_IS_PUNCTUATION" value="256" enum="GraphemeFlag"> Grapheme is punctuation character. </constant> + <constant name="GRAPHEME_IS_UNDERSCORE" value="512" enum="GraphemeFlag"> + Grapheme is underscore character. + </constant> + <constant name="GRAPHEME_IS_CONNECTED" value="1024" enum="GraphemeFlag"> + Grapheme is connected to the previous grapheme. Breaking line before this grapheme is not safe. + </constant> <constant name="HINTING_NONE" value="0" enum="Hinting"> Disables font hinting (smoother but less crisp). </constant> |
