temporarily disable the 'find next' shortcut from kactioncollection

svn path=/trunk/playground/graphics/okular/; revision=611143
remotes/origin/KDE/4.0
Pino Toscano 20 years ago
parent babbeea1e0
commit 9343b5e54c
  1. 5
      ui/pageview.cpp

@ -975,7 +975,10 @@ void PageView::keyPressEvent( QKeyEvent * e )
}
}
// go to next occurrency
else if( e->key() == d->actionCollection->action( "find_next" )->shortcut().keyQt() )
#ifdef __GNUC__
#warning FIX the find next shortcut
#endif
else if( e->key() == Qt::Key_F3 /*d->actionCollection->action( "find_next" )->shortcut().keyQt()*/ )
{
// part doesn't get this key event because of the keyboard grab
d->findTimeoutTimer->stop(); // restore normal operation during possible messagebox is displayed

Loading…
Cancel
Save