Shane Tran Whitmire
Shane Tran Whitmire
[Archive.zip](https://github.com/SFML/SFML/files/9214318/Archive.zip) Both fonts exhibit similar behavior @ChrisThrasher
After talking to @Bambo-Borris on discord. He is probably right. The real issue is there is NO documentation on how to deal with the font's inbuilt buffer. That's why I...
After some more tinkering, I managed to find a solution that undoes the text buffer. ```rust pub fn create_unbuffered_text Text
One more thing to note, I just find it odd to do: ```c++ sf::Vector2f pos(25, 25); sf::Font font; font.loadFromFile("arial 1.ttf"); sf::Text text; text.setFont(font); text.setString("Hello World!"); text.setPosition(pos); std::cout
> > One more thing to note, I just find it odd to do: > > ```c++ > > sf::Vector2f pos(25, 25); > > sf::Font font; > > font.loadFromFile("arial 1.ttf");...
After more debating, the real problem is documentation. The reason the offset is applied is that the letters in "Hello World!" are not the largest letters in the font. I...
https://strapi.io/blog/v4-plugin-migration-guide
Same issue on ArchLinux + kde + xorg. setSize doesn't work after the resize event has been called. Here is a funny video you can watch: https://youtu.be/9EbQfLMeZJE This is a...
> Tried it, no change in behavior (`sf::VideoMode::getDesktopMode().bitsPerPixel()` is equal to `32` on my system anyway). > > I did some tests on my own, the bug appears precisely because...
With the PR I made, the issue will only occur if the user holds onto the window for more than 50 milliseconds after a resize event has been called.