The problem was that Tab.setFont (which gets called during winEditConfig->add) did not reposition the text.
To work around the issue with your tgui version you can just move that line before all the others:
Or you could download the latest tgui version and compile it with CMake.
To work around the issue with your tgui version you can just move that line before all the others:
Code (cpp) Select
winEditConfigTabs = theme->load("tab");
winEditConfig->add(winEditConfigTabs);
winEditConfigTabs->setTextSize(text_size);
...Or you could download the latest tgui version and compile it with CMake.
