Hello there!

The main object of my application is a QMainWindow where I grabKeyboard() in the constructor to handle all keyboard input in the keyPressEvent of the main window. Additionally, there are a bunch of QActions in a QMenuBar that listen and react to key presses directly. All this works wonderfully, except for the space key. When I press any key that is not bound to an action, the keyPressEvent should be called, but in the case of the space key it does not get called. I did not bind the space key to any action. Does anyone know why and how to fix it?

Thanks
Cruz