[DE PE SSE] Fix bug 54670
This commit is contained in:
parent
980a5b4c2b
commit
66314773e9
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -177,6 +177,9 @@ define([
|
|||
}
|
||||
}
|
||||
});
|
||||
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
|
||||
this.toolbar.collapse();
|
||||
}, this));
|
||||
|
||||
var me = this;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue