зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1261048 - Fix shortcut modifier bug with Flame Graph. r=jsantell
--HG-- extra : rebase_source : 582274ab347a66197c953c0d896b184fbf5f2978
This commit is contained in:
Родитель
5d3c3e5175
Коммит
e119f38a8d
|
@ -927,7 +927,9 @@ FlameGraph.prototype = {
|
|||
_onKeyDown: function (e) {
|
||||
ViewHelpers.preventScrolling(e);
|
||||
|
||||
if (!this._keysPressed[e.keyCode]) {
|
||||
const hasModifier = e.ctrlKey || e.shiftKey || e.altKey || e.metaKey;
|
||||
|
||||
if (!hasModifier && !this._keysPressed[e.keyCode]) {
|
||||
this._keysPressed[e.keyCode] = true;
|
||||
this._userInputStack++;
|
||||
this._shouldRedraw = true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче