Commit b491df5c authored by GoshaZotov's avatar GoshaZotov

fix bug 31021 - [FastCoEdit][NamedRanges] Список диапазонов более чем из пяти...

fix bug 31021 - [FastCoEdit][NamedRanges] Список диапазонов более чем из пяти имен дважды мерцает в менеджере имен при редактировании имени одним пользователем
parent 0aaf178f
...@@ -2287,7 +2287,11 @@ ...@@ -2287,7 +2287,11 @@
if (res) { if (res) {
t.model.editDefinesNames(oldName, newName); t.model.editDefinesNames(oldName, newName);
t.handlers.trigger("asc_onEditDefName", oldName, newName); t.handlers.trigger("asc_onEditDefName", oldName, newName);
t.handlers.trigger("asc_onRefreshDefNameList"); //условие исключает второй вызов asc_onRefreshDefNameList(первый в unlockDefName)
if(!(t.collaborativeEditing.getCollaborativeEditing() && t.collaborativeEditing.getFast()))
{
t.handlers.trigger("asc_onRefreshDefNameList");
}
} else { } else {
t.handlers.trigger("asc_onError", c_oAscError.ID.LockCreateDefName, c_oAscError.Level.NoCritical); t.handlers.trigger("asc_onError", c_oAscError.ID.LockCreateDefName, c_oAscError.Level.NoCritical);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment