Hello,
I just have a sf::Text named content and want to set its position but it seems to be off about 7 Pixels vertically all the time. What am I doing wrong?
content.setPosition(0, 0);
std::cout << content.getPosition().x << ", " << content.getPosition().y << std::endl;
gives me (0, 0); thats what it should be.
But it looks like this (ignore the label ):
I am not changing its position in any way despite the first line. So where does the offset come from?
Thanks for any help!