commit
6499c38105
|
@ -592,7 +592,7 @@ Common.UI.HintManager = new(function() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
_needShow = (!e.shiftKey && e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
||||||
if (e.altKey && e.keyCode !== 115) {
|
if (e.altKey && e.keyCode !== 115) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,7 @@ export class storeUsers {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
!changed && change && (this.users[change.asc_getId()] = change);
|
!changed && change && (this.users.push(change));
|
||||||
}
|
}
|
||||||
|
|
||||||
resetDisconnected (isDisconnected) {
|
resetDisconnected (isDisconnected) {
|
||||||
|
|
Loading…
Reference in a new issue