[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/src

Marco Cecchetti marco.cecchetti at collabora.com
Tue Apr 4 17:05:50 UTC 2017


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

New commits:
commit ffad0eb278f5485e36d38cb386df0401cefb9b00
Author: Marco Cecchetti <marco.cecchetti at 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 <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at 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
 				},


More information about the Libreoffice-commits mailing list