[DE PE SSE] Fix bug 54670

This commit is contained in:
JuliaSvinareva 2021-12-23 02:00:22 +03:00
parent 980a5b4c2b
commit 66314773e9
4 changed files with 12 additions and 0 deletions

View file

@ -149,6 +149,9 @@ Common.UI.HintManager = new(function() {
var _showHints = function () {
_inputLetters = '';
if (_currentLevel === 0) {
Common.NotificationCenter.trigger('toolbar:collapse');
}
if (_currentHints.length === 0 || ($('#file-menu-panel').is(':visible' || _isEditDiagram) && _currentLevel === 1)) {
_getHints();
}

View file

@ -231,6 +231,9 @@ define([
// Common.NotificationCenter.on('menu:afterkeydown', _.bind(this.onAfterKeydownMenu, this));
Common.NotificationCenter.on('style:commitsave', _.bind(this.onSaveStyle, this));
Common.NotificationCenter.on('style:commitchange', _.bind(this.onUpdateStyle, this));
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
this.toolbar.collapse();
}, this));
},
onLaunch: function() {

View file

@ -177,6 +177,9 @@ define([
}
}
});
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
this.toolbar.collapse();
}, this));
var me = this;

View file

@ -149,6 +149,9 @@ define([
});
Common.NotificationCenter.on('page:settings', _.bind(this.onApiSheetChanged, this));
Common.NotificationCenter.on('formula:settings', _.bind(this.applyFormulaSettings, this));
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
this.toolbar.collapse();
}, this));
this.editMode = true;
this._isAddingShape = false;