Just wondering if there has been progress on this and if anyone has discovered some work arounds? On my machine it is really bad. Using SFML-2 on Xcode and the template project, just by adding enough text I get boxes around characters. In the the example below, everything from 1 onwards is bounded. I'm working on an app that's using tons of text, this could kill it
if (!font.loadFromFile(resourcePath() + "sansation.ttf"))
return EXIT_FAILURE;
sf::Text text("ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefg??", font, 30);
text.setColor(sf::Color::Black);