loleaflet/css/leaflet.css | 1 + loleaflet/plugins/draw-0.2.4/src/edit/handler/Edit.SimpleShape.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 082ea3491322c9d2bd02848880612a0b75bcbdfa Author: Victor Walker <[email protected]> AuthorDate: Mon Aug 20 15:44:47 2018 +0100 Commit: Henry Castro <[email protected]> CommitDate: Sat Oct 27 14:51:35 2018 +0200 Made grab handles larger and circles. Change-Id: I50decb47495aa62407d19509aec8053def970311 Reviewed-on: https://gerrit.libreoffice.org/59333 Reviewed-by: Henry Castro <[email protected]> Tested-by: Henry Castro <[email protected]> diff --git a/loleaflet/css/leaflet.css b/loleaflet/css/leaflet.css index 3dde4a01a..c9739b2e6 100644 --- a/loleaflet/css/leaflet.css +++ b/loleaflet/css/leaflet.css @@ -185,6 +185,7 @@ .leaflet-interactive { cursor: pointer; + border-radius:50%; } .leaflet-container { cursor: text; diff --git a/loleaflet/plugins/draw-0.2.4/src/edit/handler/Edit.SimpleShape.js b/loleaflet/plugins/draw-0.2.4/src/edit/handler/Edit.SimpleShape.js index e5670f741..4388d4c0f 100644 --- a/loleaflet/plugins/draw-0.2.4/src/edit/handler/Edit.SimpleShape.js +++ b/loleaflet/plugins/draw-0.2.4/src/edit/handler/Edit.SimpleShape.js @@ -4,11 +4,11 @@ L.Edit = L.Edit || {}; L.Edit.SimpleShape = L.Handler.extend({ options: { moveIcon: new L.DivIcon({ - iconSize: new L.Point(8, 8), + iconSize: new L.Point(16, 16), className: 'leaflet-div-icon leaflet-editing-icon leaflet-edit-move' }), resizeIcon: new L.DivIcon({ - iconSize: new L.Point(8, 8), + iconSize: new L.Point(16, 16), className: 'leaflet-div-icon leaflet-editing-icon leaflet-edit-resize' }) }, _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
