diff options
Diffstat (limited to 'sw/source/uibase/wrtsh/move.cxx')
-rw-r--r-- | sw/source/uibase/wrtsh/move.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/wrtsh/move.cxx b/sw/source/uibase/wrtsh/move.cxx index 784a3992d584..a2c50dae8582 100644 --- a/sw/source/uibase/wrtsh/move.cxx +++ b/sw/source/uibase/wrtsh/move.cxx @@ -84,7 +84,7 @@ void SwWrtShell::MoveCursor( bool bWithSelect ) else { EndSelect(); - (this->*m_fnKillSel)( nullptr, false ); + (this->*m_fnKillSel)( nullptr, false, ScrollSizeMode::ScrollSizeDefault ); } } @@ -498,7 +498,7 @@ bool SwWrtShell::PushCursor(SwTwips lOffset, bool bSelect) CallChgLnk(); } - (this->*m_fnSetCursor)( &m_aDest, true ); + (this->*m_fnSetCursor)( &m_aDest, true, ScrollSizeMode::ScrollSizeDefault ); bDiff = aOldRect != GetCharRect(); @@ -539,7 +539,7 @@ bool SwWrtShell::PopCursor(bool bUpdate, bool bSelect) else EndSelect(); - (this->*m_fnSetCursor)(&m_pCursorStack->aDocPos, !m_pCursorStack->bIsFrameSel); + (this->*m_fnSetCursor)(&m_pCursorStack->aDocPos, !m_pCursorStack->bIsFrameSel, ScrollSizeMode::ScrollSizeDefault); if( m_pCursorStack->bIsFrameSel && IsObjSelectable(m_pCursorStack->aDocPos)) { HideCursor(); |