We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e96d2f commit f7199aaCopy full SHA for f7199aa
src/framework/components/element/text-element.js
@@ -734,6 +734,17 @@ class TextElement {
734
break;
735
}
736
737
+
738
+ // #ifdef DEBUG
739
+ if (!json.missingChars) {
740
+ json.missingChars = new Set();
741
+ }
742
743
+ if (!json.missingChars.has(char)) {
744
+ console.warn("Character '" + char + "' is missing from the font " + json.info.face);
745
+ json.missingChars.add(char);
746
747
+ // #endif
748
749
750
0 commit comments