Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - AlexAUT

#1
Hello, how do you handle your github repository? Do you upload only kinda stable things like SFML do or should we use the stable releases?



AlexAUT
#2
Help requests / Chatbox only displaying one line?
22 January 2014, 03:01:33
First thanks for this great Gui  :).

To the problem:

I have created a simple form with the form_builder with a chatbox on it. Then I load the form into a panel and because the Form_builder doesn't support it, I add lines to the checkbox manually in the c++ code.



   tgui::ChatBox::Ptr chatbox = panel->get<tgui::ChatBox>("ChatBox1");

   chatbox->addLine("Developed by Alexander Weinrauch (AlexAUT).", sf::Color::White);
   chatbox->addLine("Laurent Gomila for SFML!", sf::Color::White);
   chatbox->addLine("fallahn for sfChat (Chat system)", sf::Color::White);
   chatbox->addLine("MafiaFLairBeatz for the music!", sf::Color::White);
   chatbox->addLine("Machinimasound for the music!", sf::Color::White);
   chatbox->addLine("Alexandre Bodelot", sf::Color::White);
   chatbox->addLine("Lukas Dürrenberger", sf::Color::White);



But only the first line gets rendered  :o? So isn't it implemented yet or did I a misstake?

(I have to add you to the list too  ;) )
AlexAUT