diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-06 15:24:50 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-06 15:26:02 -0400 |
commit | 7aa32a759fb7b440f870739f7bb680f405f338ce (patch) | |
tree | 6c2ea259dff9ef800d19607c06343662f2b4eae1 /sc | |
parent | 48631bde1ccdbd618e5892b7050822b61b843332 (diff) |
fdo#77647: Fix the column insertion use case.
Change-Id: I7c78f54c9386eced16113e69e625d23ed4acedd7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/token.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx index b1f8e022eade..636ff01daa74 100644 --- a/sc/source/core/tool/token.cxx +++ b/sc/source/core/tool/token.cxx @@ -2546,7 +2546,7 @@ bool expandRange( const sc::RefUpdateContext& rCxt, ScRange& rRefRange, const Sc // Selected range is only partially overlapping in vertical direction. Bail out. return false; - if (!rCxt.mrDoc.IsExpandRefs() && rSelectedRange.aStart.Col() == rRefRange.aStart.Col()) + if (!rCxt.mrDoc.IsExpandRefs() && rSelectedRange.aStart.Col() <= rRefRange.aStart.Col()) // Selected range is at the left end and the edge expansion is turned off. No expansion. return false; |