Hi,
I created the QMenu called menu and linked it with options QPushButton which is made LSK.
when we click the LSK(key_tab)on emulator I am calling the following in eventFilter function
case Qt::Key_Tab:
{
menu->click();
e->accept();
return true;
}
the menu pops up, but now if I click the options again its not going inside the eventfilter function and so to the above case.
when the memu is shown all the LSK clicks are received there only.
I need to implement is that when the options i.e LSK is pressed second time the menu should close.
How to disable the key_Tab keypress on the displaying menu??
Any suggestions please??

for your suggestion..I implemented another filter event on menu and handled it. Its working fine now 


