diff --git a/include/gal/graphics_abstraction_layer.h b/include/gal/graphics_abstraction_layer.h index 973c1c0bf5..c6bc0643a4 100644 --- a/include/gal/graphics_abstraction_layer.h +++ b/include/gal/graphics_abstraction_layer.h @@ -310,7 +310,15 @@ public: double aRotationAngle ) { // Fallback: use stroke font + + // Handle flipped view + if( globalFlipX ) + textProperties.m_mirrored = !textProperties.m_mirrored; + StrokeText( aText, aPosition, aRotationAngle ); + + if( globalFlipX ) + textProperties.m_mirrored = !textProperties.m_mirrored; } /**