[Libreoffice-commits] online.git: loleaflet/src
Ashod Nakashian (via logerrit)
logerrit at kemper.freedesktop.org
Thu Mar 26 07:18:29 UTC 2020
loleaflet/src/control/Control.LokDialog.js | 5 +----
loleaflet/src/layer/tile/TileLayer.js | 2 +-
2 files changed, 2 insertions(+), 5 deletions(-)
New commits:
commit b4c6999d8c9c40df2d9b290e369ae6f8c864f912
Author: Ashod Nakashian <ashod.nakashian at collabora.co.uk>
AuthorDate: Wed Mar 25 23:14:49 2020 -0400
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Thu Mar 26 08:18:09 2020 +0100
leaflet: add margin between sidebar and formula-bar
And remove extra lastActiveTime reset.
Change-Id: If7821e07fc61a54dc8caee5983198b475f43098c
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/91083
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Andras Timar <andras.timar at collabora.com>
diff --git a/loleaflet/src/control/Control.LokDialog.js b/loleaflet/src/control/Control.LokDialog.js
index 5d9edd5dc..6057a6d25 100644
--- a/loleaflet/src/control/Control.LokDialog.js
+++ b/loleaflet/src/control/Control.LokDialog.js
@@ -930,7 +930,6 @@ L.Control.LokDialog = L.Control.extend({
// Move the mouse off-screen when we leave the sidebar
// so we don't leave edge-elements highlighted as if
// the mouse is still over them.
- this._map.lastActiveTime = Date.now();
this._postWindowMouseEvent('move', id, -1, -1, 1, 0, 0);
}, this);
}
@@ -948,8 +947,6 @@ L.Control.LokDialog = L.Control.extend({
}
var pos = this._isSelectionHandle(e.target) ? L.DomEvent.getMousePosition(e, canvas) : {x: e.offsetX, y: e.offsetY};
this._postWindowMouseEvent('move', id, pos.x, pos.y, 1, 0, 0);
- // Keep map active while user is playing with sidebar/dialog.
- this._map.lastActiveTime = Date.now();
}, this);
L.DomEvent.on(canvas, 'mouseleave', function(e) {
@@ -1284,7 +1281,7 @@ L.Control.LokDialog = L.Control.extend({
if (that._currentDeck) {
var sidebar = L.DomUtil.get(that._currentDeck.strId);
if (sidebar) {
- deckOffset = sidebar.clientWidth;
+ deckOffset = sidebar.clientWidth + 10; // Allow some margin.
}
}
var correctWidth = container.clientWidth - deckOffset;
diff --git a/loleaflet/src/layer/tile/TileLayer.js b/loleaflet/src/layer/tile/TileLayer.js
index ba321a18e..a7d436ac0 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -1147,7 +1147,6 @@ L.TileLayer = L.GridLayer.extend({
},
_onInvalidateCursorMsg: function (textMsg) {
- var docLayer = this._map._docLayer;
textMsg = textMsg.substring('invalidatecursor:'.length + 1);
var obj = JSON.parse(textMsg);
var modifierViewId = parseInt(obj.viewId);
@@ -1160,6 +1159,7 @@ L.TileLayer = L.GridLayer.extend({
this._twipsToLatLng(topLeftTwips, this._map.getZoom()),
this._twipsToLatLng(bottomRightTwips, this._map.getZoom()));
var cursorPos = this._visibleCursor.getNorthWest();
+ var docLayer = this._map._docLayer;
if ((docLayer._followEditor || docLayer._followUser) && this._map.lastActionByUser) {
this._map._setFollowing(false, null);
}
More information about the Libreoffice-commits
mailing list