summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2017-03-29 13:57:31 +0200
committerMarco Cecchetti <mrcekets@gmail.com>2017-10-02 18:46:53 +0200
commit8429590a4479cfceb7cd73cdb0fa90aee0ea22ca (patch)
tree98fd2a8d699fe5a64c3d782ce0bdea62bf1f858d /sc
parent6dc844945c5af0c75183fa72f6e17d25f5e664c3 (diff)
lok - sc: lift row limit to 500k
Due to previously intruduced optimizations, it is safe and fast enough to navigate through a 500k rows speadsheet. Change-Id: I865d0b60629b5bbf796e9e48df6ff21242a13e5a Reviewed-on: https://gerrit.libreoffice.org/40454 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/address.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx
index b5b7f1ad689a..193c85934b07 100644
--- a/sc/inc/address.hxx
+++ b/sc/inc/address.hxx
@@ -73,7 +73,7 @@ const SCCOL MAXCOL = MAXCOLCOUNT - 1;
const SCTAB MAXTAB = MAXTABCOUNT - 1;
const SCCOLROW MAXCOLROW = MAXROW;
// Maximun tiled rendering values
-const SCROW MAXTILEDROW = 10000;
+const SCROW MAXTILEDROW = 500000;
// Limit the initial tab count to prevent users to set the count too high,
// which could cause the memory usage of blank documents to exceed the
// available system memory.