diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-08 23:15:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 23:15:30 +0200 |
commit | 090e4c4abdd406a7ed7fc33d0a4670bba69a4c0a (patch) | |
tree | eb1341d156ee50d883a135f4dff14e1a0300d2d7 /editor | |
parent | d3a796046b9cc7df4bcc06b68d5fd364f7b3b97d (diff) | |
parent | 4d5acd76f4ffd6ac052aef54f93af6ee0dfc53b4 (diff) |
Merge pull request #49422 from timothyqiu/hani-preview-text
Fix font preview text for CJKV ideographs
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/editor_preview_plugins.cpp | 2 | ||||
-rw-r--r-- | editor/plugins/font_editor_plugin.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/editor_preview_plugins.cpp b/editor/plugins/editor_preview_plugins.cpp index cf237f5a4a..235ccb18cb 100644 --- a/editor/plugins/editor_preview_plugins.cpp +++ b/editor/plugins/editor_preview_plugins.cpp @@ -832,7 +832,7 @@ struct FSample { }; static FSample _samples[] = { - { "hani", U"漢語" }, + { "hani", U"漢字" }, { "armn", U"Աբ" }, { "copt", U"Αα" }, { "cyrl", U"Аб" }, diff --git a/editor/plugins/font_editor_plugin.cpp b/editor/plugins/font_editor_plugin.cpp index fa58eb5480..8de7dc2447 100644 --- a/editor/plugins/font_editor_plugin.cpp +++ b/editor/plugins/font_editor_plugin.cpp @@ -56,7 +56,7 @@ struct FSample { }; static FSample _samples[] = { - { "hani", U"漢語" }, + { "hani", U"漢字" }, { "armn", U"Աբ" }, { "copt", U"Αα" }, { "cyrl", U"Аб" }, |