1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +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[] =
{
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),
feature.exampleText }
};