From f1c4773e29fa9e2b726d8d214c59359d43629924 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 7 May 2020 18:40:58 +0300 Subject: [PATCH] [SSE] Don't show wizard for functions from quick access menu --- apps/spreadsheeteditor/main/app/controller/FormulaDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js index ea0ac3ea9..44521f255 100644 --- a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js @@ -96,7 +96,7 @@ define([ if (func.origin === 'more') { this.showDialog(group); } else { - this.api.asc_insertInCell(func.name, Asc.c_oAscPopUpSelectorType.FuncWizard, !!autocomplete); + this.api.asc_insertInCell(func.name, autocomplete ? Asc.c_oAscPopUpSelectorType.Func : Asc.c_oAscPopUpSelectorType.FuncWizard, !!autocomplete); !autocomplete && this.updateLast10Formulas(func.origin); } }