Hi,
is it known that no KeyEvents are triggered when using SFML with wxWidget?
I am polling the event in a mainloop like this:
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::KeyPressed) {
LOG << "Yeah!\n";
}
}
however the polling the Keyboard directly is still possible.
Is there a workaround to get the KeyEvent working?