loleaflet/src/control/Control.MobileWizard.js | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 9ef5e8debc32f885908624083f341a5d905cc311 Author: Szymon Kłos <[email protected]> AuthorDate: Wed May 6 13:03:35 2020 +0200 Commit: Andras Timar <[email protected]> CommitDate: Wed May 6 16:17:20 2020 +0200 Always show slide sorter above mobile wizard in impress Bugfix: when menu was opened in impress before mobile wizard then slide sorter was missing. This patch makes it visible. Change-Id: Iad5efc156796458402f859e5c3b3245872f33017 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/93561 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/loleaflet/src/control/Control.MobileWizard.js b/loleaflet/src/control/Control.MobileWizard.js index fa04d7b77..3f59a0606 100644 --- a/loleaflet/src/control/Control.MobileWizard.js +++ b/loleaflet/src/control/Control.MobileWizard.js @@ -327,6 +327,9 @@ L.Control.MobileWizard = L.Control.extend({ this._lastSidebarData = dataString; } + if (this.map.getDocType() === 'presentation') + $('#mobile-wizard-header').show(); + this._isActive = true; var currentPath = null; var lastScrollPosition = null; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
