sc/uiconfig/scalc/ui/optcalculatepage.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ef725dc31f6f8b9e34b3c5f2ef514c5a48041684 Author: Eike Rathke <[email protected]> Date: Fri Sep 18 13:10:13 2015 +0200 Resolves: tdf#94060 raise iteration steps upper limit to 32767 ... which is what Excel does, the value has to fit in a 16-bit signed integer. Change-Id: Ie172eb4eaa69b80110c8f93b1f74a6bb17ffc92f diff --git a/sc/uiconfig/scalc/ui/optcalculatepage.ui b/sc/uiconfig/scalc/ui/optcalculatepage.ui index d501fbd..a9dca19 100644 --- a/sc/uiconfig/scalc/ui/optcalculatepage.ui +++ b/sc/uiconfig/scalc/ui/optcalculatepage.ui @@ -5,7 +5,7 @@ <requires lib="LibreOffice" version="1.0"/> <object class="GtkAdjustment" id="adjustment1"> <property name="lower">1</property> - <property name="upper">1000</property> + <property name="upper">32767</property> <property name="value">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
