Kaydet (Commit) 8429590a authored tarafından Marco Cecchetti's avatar Marco Cecchetti Kaydeden (comit) Marco Cecchetti

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/40454Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarco Cecchetti <mrcekets@gmail.com>
üst 6dc84494
...@@ -73,7 +73,7 @@ const SCCOL MAXCOL = MAXCOLCOUNT - 1; ...@@ -73,7 +73,7 @@ const SCCOL MAXCOL = MAXCOLCOUNT - 1;
const SCTAB MAXTAB = MAXTABCOUNT - 1; const SCTAB MAXTAB = MAXTABCOUNT - 1;
const SCCOLROW MAXCOLROW = MAXROW; const SCCOLROW MAXCOLROW = MAXROW;
// Maximun tiled rendering values // 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, // 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 // which could cause the memory usage of blank documents to exceed the
// available system memory. // available system memory.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment