[SSE] Fix Bug 46112

This commit is contained in:
Julia Radzhabova 2020-08-20 11:14:36 +03:00
parent fc6482e92e
commit e67c257caa
3 changed files with 3 additions and 3 deletions

View file

@ -284,7 +284,7 @@ define([
},
onNameBeforeShow: function() {
var names = this.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.WorksheetWorkbook),
var names = this.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.WorksheetWorkbook, true),
rangesMenu = this.editor.btnNamedRanges.menu,
prev_name='';

View file

@ -548,7 +548,7 @@ define([
win.show();
win.setSettings({
sheets : items,
ranges : me.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.All),
ranges : me.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.All, true),
currentSheet: me.api.asc_getWorksheetName(me.api.asc_getActiveWorksheetIndex()),
props : props,
text : cell.asc_getText(),

View file

@ -911,7 +911,7 @@ define([
win.show();
win.setSettings({
sheets : items,
ranges : me.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.All),
ranges : me.api.asc_getDefinedNames(Asc.c_oAscGetDefinedNamesList.All, true),
currentSheet: me.api.asc_getWorksheetName(me.api.asc_getActiveWorksheetIndex()),
props : props,
text : cell.asc_getText(),