summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loleaflet/src/control/Control.MobileWizard.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/loleaflet/src/control/Control.MobileWizard.js b/loleaflet/src/control/Control.MobileWizard.js
index e18b8ccdf..1f10b1a60 100644
--- a/loleaflet/src/control/Control.MobileWizard.js
+++ b/loleaflet/src/control/Control.MobileWizard.js
@@ -317,7 +317,12 @@ L.Control.MobileWizard = L.Control.extend({
else mWizardContentLength = data.children[0].children.length;
this._showWizard(mWizardContentLength);
- this._hideKeyboard();
+ if (!this._map._docLayer.isCalc()) {
+ // In Calc, the wizard is used for the formulas,
+ // and it's easier to allow the user to search
+ // for a formula by typing the first few characters.
+ this._hideKeyboard();
+ }
// Morph the sidebar into something prettier
if (isSidebar)