I create simple Text with default null position and why so much offset from Top and Left ??
SFML-2.4.2-vc14-x86
Here example of code and scr >>
win.create(VideoMode(600, 550), "111", Style::Default);
win.setVerticalSyncEnabled(true);
Font font;
font.loadFromFile("Data/arial.ttf");
Event ev;
while (win.isOpen())
{
while (win.pollEvent(ev))
{
if (ev.type == Event::Closed)
win.close();
}
Text txt;
txt.setFont(font);
txt.setCharacterSize(65);
txt.setString("D11");
win.clear(Color(80, 80, 80));
// Why so much offset ??
win.draw(txt);
win.display();
}