Quote Originally Posted by MrDeath View Post
you dont have to tear apart your code to search for keyevent.
just put eventFilter() in your main widget. and see where the keys are going

Qt Code:
  1. qApp->installEventFilter(this);
  2. bool MainWidgetThatContainsGrphViewAndItems::eventFilter(QObject* o,QEvent* e)
  3. {
  4. if(e->type()==QEvent::KeyPress)
  5. {
  6. qWarning()<<"The bad guy which steals the keyevent is"<<o;
  7. }
  8. return false;
  9. }
To copy to clipboard, switch view to plain text mode 

easy!!

edit: do tell us who was stealing.
Just by browsing the thread can teach me a lot even though I don't need it now

Thanks!