summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-15 09:25:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-15 11:25:44 +0100
commitc21b6629a8af2b4d87840fcee8d39b3f77f08c98 (patch)
tree1b805106356e6142aa45b06f97a6b88960264cf2 /sc
parentc82311303bd26bffb74159b2d1294630830a615a (diff)
tdf#129393 Calc: cannot format whole row of unprotected cells
regression from commit 3c3a371c799d00475deb13b4c3e0a8860c7e4fb3 tdf#125254 Performance: A spreadsheet opens too slow, part2 Change-Id: I87e06a58d6a4eb1a32bdf7e9267a4fe9d6dc4f2a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86826 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86830
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/markdata.cxx15
1 files changed, 11 insertions, 4 deletions
diff --git a/sc/source/core/data/markdata.cxx b/sc/source/core/data/markdata.cxx
index 66f067648bb1..8922ab01b674 100644
--- a/sc/source/core/data/markdata.cxx
+++ b/sc/source/core/data/markdata.cxx
@@ -375,10 +375,17 @@ ScMarkData::ScMarkData(SCROW nMaxRow, SCCOL nMaxCol, const ScRangeList& rList)
for (const ScRange& rRange : rList)
maTabMarked.insert( rRange.aStart.Tab() );
- bMultiMarked = true;
- aMultiRange = rList.Combine();
-
- aMultiSel.Set( rList );
+ if (rList.size() > 1)
+ {
+ bMultiMarked = true;
+ aMultiRange = rList.Combine();
+ aMultiSel.Set( rList );
+ }
+ else if (rList.size() == 1)
+ {
+ const ScRange& rRange = rList[ 0 ];
+ SetMarkArea( rRange );
+ }
}