mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
Backport fix for #7598.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@38904 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7b0875f756
commit
4e20d4473f
@ -1018,6 +1018,10 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
|
||||
switch (ev->key()) {
|
||||
case Qt::Key_PageDown:
|
||||
case Qt::Key_PageUp:
|
||||
case Qt::Key_Left:
|
||||
case Qt::Key_Right:
|
||||
case Qt::Key_Up:
|
||||
case Qt::Key_Down:
|
||||
LYXERR(Debug::KEY, "system is busy: scroll key event ignored");
|
||||
ev->ignore();
|
||||
return;
|
||||
|
@ -124,6 +124,8 @@ What's new
|
||||
- Fix paragraph style shortcut with open source view in German localization
|
||||
(bug 7590).
|
||||
|
||||
- Do not cache cursor keys when scrolling (bug 7598)
|
||||
|
||||
|
||||
* ADVANCED FIND AND REPLACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user