I have a Editbox set up so you can type into it / edit the text. The thing is the Event Subscriber to EventTextAccepted never gets called when return is pressed; It just goes to a new line in the editbox.
Code: Select all
editbox->subscribeEvent
(CEGUI::Editbox::EventTextAccepted ,
CEGUI::Event::Subscriber(&Console::returnSubscribe,this));
What does it take to get the Editbox to return?