[Libreoffice-commits] .: Branch 'libreoffice-3-4' - sc/source

Eike Rathke erack at kemper.freedesktop.org
Fri Nov 11 04:06:22 PST 2011


 sc/source/ui/view/tabview2.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit a1582914e1150efe1664204b53fdcbaf9b713652
Author: Kohei Yoshida <kohei.yoshida at suse.com>
Date:   Fri Nov 11 13:00:25 2011 +0100

    Fixed the wrong keyboard selection behavior in reference mode.
    
    This one is pretty bad, especially for those who like to select
    ranges using keyboard.
    
    Signed-off-by: Eike Rathke <erack at redhat.com>

diff --git a/sc/source/ui/view/tabview2.cxx b/sc/source/ui/view/tabview2.cxx
index d755e54..db9a8b7 100644
--- a/sc/source/ui/view/tabview2.cxx
+++ b/sc/source/ui/view/tabview2.cxx
@@ -426,6 +426,8 @@ void ScTabView::GetAreaMoveEndPosition(SCsCOL nMovX, SCsROW nMovY, ScFollowMode
     {
         nNewX = aViewData.GetRefEndX();
         nNewY = aViewData.GetRefEndY();
+        nCurX = aViewData.GetRefStartX();
+        nCurY = aViewData.GetRefStartY();
     }
     else if (IsBlockMode())
     {


More information about the Libreoffice-commits mailing list