loleaflet/src/control/Control.RowHeader.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6215471e2e57d1527aacaf34538fef3764011d3e
Author: Marco Cecchetti <marco.cecche...@collabora.com>
Date:   Sun Apr 2 20:50:29 2017 +0200

    Loleaflet - Calc: beyond row 65535 it is not possibile to resize a row
    
    The row parameter type was an unsigned short.
    
    Change-Id: I81bfd5211ebc6c380014d0cd2a2b1d3b8c252749
    Reviewed-on: https://gerrit.libreoffice.org/36086
    Reviewed-by: Jan Holesovsky <ke...@collabora.com>
    Tested-by: Jan Holesovsky <ke...@collabora.com>

diff --git a/loleaflet/src/control/Control.RowHeader.js 
b/loleaflet/src/control/Control.RowHeader.js
index a53eab7a..9ca3395d 100644
--- a/loleaflet/src/control/Control.RowHeader.js
+++ b/loleaflet/src/control/Control.RowHeader.js
@@ -275,7 +275,7 @@ L.Control.RowHeader = L.Control.Header.extend({
                if (item.height != distance.y) {
                        var command = {
                                Row: {
-                                       type: 'unsigned short',
+                                       type: 'long',
                                        value: item.parentNode && 
item.parentNode.nextSibling &&
                                               
L.DomUtil.getStyle(item.parentNode.nextSibling, 'display') === 'none' ? 
item.row + 1 : item.row
                                },
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to