From dad173d9588e6abc2a465198b7d2881d4629246a Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Wed, 10 Dec 2014 12:45:44 +0900 Subject: fdo#75137: Can't Move Cursor Between Footnotes with Up/Down Arrow Keys This fixes a regression introduced at 43941d9a5313fcd7fe39a61bd2eace64f7743486. Change-Id: If73883569049f0f3ae8a2d40f6704f74e63eecb2 Reviewed-on: https://gerrit.libreoffice.org/13401 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- sw/source/core/crsr/swcrsr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/crsr/swcrsr.cxx b/sw/source/core/crsr/swcrsr.cxx index d0f0005ca471..ce67b7e2fcf3 100644 --- a/sw/source/core/crsr/swcrsr.cxx +++ b/sw/source/core/crsr/swcrsr.cxx @@ -1792,7 +1792,7 @@ bool SwCursor::UpDown( bool bUp, sal_uInt16 nCnt, } // It is allowed to move footnotes in other footnotes but not sections - const bool bChkRange = pFrm->IsInFtn() && !HasMark(); + const bool bChkRange = !pFrm->IsInFtn() || HasMark(); const SwPosition aOldPos( *GetPoint() ); const bool bInReadOnly = IsReadOnlyAvailable(); -- cgit v1.2.3