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>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if event.key() == QtCore.Qt.Key_F4
 and (event.modifiers() &amp;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; QtCore.Qt.AltModifier):<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # DO Nothing. How?<br><br>So, which action or code i should implement in place of &quot;# DO Nothing. How?&quot; ?<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>