1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

FontFeaturesDemo: Force LTR order when shaping examples

This commit is contained in:
Oliver James 2025-06-17 23:20:42 +01:00 committed by Oli
parent fc80bb29ca
commit 6df6acad0d

View file

@ -338,7 +338,9 @@ public:
const FontStringPair example[] = const FontStringPair example[] =
{ {
FontStringPair { baseLineFont.withPointHeight (16), FontStringPair { baseLineFont.withPointHeight (16),
feature.exampleText + " " + String::fromUTF8 ("\xe2\x86\x92") }, feature.exampleText },
FontStringPair { baseLineFont.withPointHeight (16),
" " + String::fromUTF8 ("\xe2\x86\x92") },
FontStringPair { exampleFont.withPointHeight (16), FontStringPair { exampleFont.withPointHeight (16),
feature.exampleText } feature.exampleText }
}; };