Apparently my code doesn't compile in visual studio. I can't test nor fix it from my linux, so I will boot my windows later to look at this (and then I can immediately fix those conversion warnings as well).
For now you can change line 412 in TextBox.hpp from
to
Obviously that may break the TextBox, but at least then you can continue with the rest of tgui.
Or you can wait a few hours until I have fixed this issue and then get the latest version again (I'll post here when it's done).
For now you can change line 412 in TextBox.hpp from
Code Select
std::vector<sf::String> m_lines = {""};to
Code Select
std::vector<sf::String> m_lines;Obviously that may break the TextBox, but at least then you can continue with the rest of tgui.
Or you can wait a few hours until I have fixed this issue and then get the latest version again (I'll post here when it's done).
.