summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-04-10 16:55:50 +0100
committerEike Rathke <erack@redhat.com>2018-04-13 17:04:00 +0200
commit14b042d86e5d3e20dbc73efe08b831810bd52711 (patch)
treed95b63707e3e17a81fbe446a405ead597a132ebb /sc
parent7ed2e2e74d86cc2c9c3e1fe18f5ab160c89d3a44 (diff)
Resolves: tdf#116813 Height/Width swapped
Change-Id: I9b41a4b65fda895ed73fa346fb0b8e13df010706 Reviewed-on: https://gerrit.libreoffice.org/52693 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/view/select.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/select.cxx b/sc/source/ui/view/select.cxx
index fcfe6eddf1c5..b8dd689eb640 100644
--- a/sc/source/ui/view/select.cxx
+++ b/sc/source/ui/view/select.cxx
@@ -329,8 +329,8 @@ bool ScViewFunctionSet::SetCursorAtPoint( const Point& rPointPixel, bool /* bDon
// above a neighbour cell
if (bFillingSelection)
{
- bBottomScroll = aEffPos.X() >= aWinSize.Height();
- bRightScroll = aEffPos.Y() >= aWinSize.Width();
+ bBottomScroll = aEffPos.Y() >= aWinSize.Height();
+ bRightScroll = aEffPos.X() >= aWinSize.Width();
}
else
{