Hi!<br><br>What i want to do this time, is to disable a key event in my app. For example i want to avoid closing the app by pressing ALT + F4:<br><br>def keyPressEvent(self, event):<br> if event.key() == QtCore.Qt.Key_F4
and (event.modifiers() &<br> QtCore.Qt.AltModifier):<br> # DO Nothing. How?<br><br>So, which action or code i should implement in place of "# DO Nothing. How?" ?<br><br>Thanks.<br><br>Cheers.
<br clear="all"><br>-- <br>Gustavo A. Díaz<br>GDNet Projects<br><a href="http://www.gdnet.com.ar">www.gdnet.com.ar</a>