]> git.lyx.org Git - features.git/commitdiff
tab correcten to <don't process generated key events if the system is busy>
authorPeter Kümmel <syntheticpp@gmx.net>
Thu, 17 May 2007 08:26:05 +0000 (08:26 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Thu, 17 May 2007 08:26:05 +0000 (08:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18377 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiWorkArea.cpp

index 168ed877b9a98f8e5002662efbc2f2a6e299e3ef..45beeb515e3fdadd476780259c22b6e8a6e3b2b4 100644 (file)
@@ -417,8 +417,9 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * e)
        // do nothing if there are other events
        // (the auto repeated events come too fast)
        if(e->isAutoRepeat() && QCoreApplication::hasPendingEvents()) {
-               LYXERR(Debug::KEY)      << BOOST_CURRENT_FUNCTION << endl
-                                                       << "key ignored" << endl;
+               LYXERR(Debug::KEY)      
+                       << BOOST_CURRENT_FUNCTION << endl
+                       << "key ignored" << endl;
                e->ignore();
                return;
        }