loleaflet/src/control/Control.PartsPreview.js | 1 + loleaflet/src/control/Toolbar.js | 1 + 2 files changed, 2 insertions(+)
New commits: commit 651a4f546aa07a42e0a5416af317ef46851c69b3 Author: mert <[email protected]> AuthorDate: Wed Dec 11 14:10:03 2019 +0300 Commit: Mert Tümer <[email protected]> CommitDate: Wed Dec 11 16:23:20 2019 +0100 fix Keyboard pops up when switching slides Change-Id: I6b0953e4868867786a8c63c5ccbf132baa0d0324 Reviewed-on: https://gerrit.libreoffice.org/84935 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Mert Tümer <[email protected]> diff --git a/loleaflet/src/control/Control.PartsPreview.js b/loleaflet/src/control/Control.PartsPreview.js index ddc9c6041..12c5bab19 100644 --- a/loleaflet/src/control/Control.PartsPreview.js +++ b/loleaflet/src/control/Control.PartsPreview.js @@ -170,6 +170,7 @@ L.Control.PartsPreview = L.Control.extend({ .on(img, 'click', this._map.focus, this._map) .on(img, 'click', function() { this.partsFocused = true; + document.activeElement.blur(); }, this); var topBound = this._previewContTop; commit 041b16202c35064df4e905115c69c3486f7cb717 Author: mert <[email protected]> AuthorDate: Wed Dec 11 13:50:10 2019 +0300 Commit: Mert Tümer <[email protected]> CommitDate: Wed Dec 11 16:22:29 2019 +0100 Fix closing hyperlink dialog doesn't focus The document should have the focus after closing the hyperlink dialog Change-Id: I5f4cf4f2cabe92b97e60a4d118ba67255f598c0b Reviewed-on: https://gerrit.libreoffice.org/84933 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Mert Tümer <[email protected]> diff --git a/loleaflet/src/control/Toolbar.js b/loleaflet/src/control/Toolbar.js index e2289a748..1a353ff67 100644 --- a/loleaflet/src/control/Toolbar.js +++ b/loleaflet/src/control/Toolbar.js @@ -470,6 +470,7 @@ L.Map.include({ } }; map.sendUnoCommand('.uno:SetHyperlink', command); + map.focus(); } } }); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
