GNOME Bugzilla – Bug 704422
slow opening of ODF file
Last modified: 2013-07-20 01:53:59 UTC
The ODF file in comment #2 of bug #704391 takes 80 seconds to open, much slower than LoCalc.
http://www.excelmexel.de/HTMLOOCalc/Zeiterfassung.ods for reference. The problem here is the way we apply default styles. We first apply the the default column style to the whole column: > Applying style to A1:A65536 then later we clear that again: > Applying style to A36:AMJ65536 This isn't normally a problem, but applying and clearing conditional styles[*] is expensive. This is because we are linking them into the dependency system so we can update the display when a dependent changes. [*] We probably have the cost for all styles; I don't think we actually need it for conditions that only refer to the current cell.
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.