Bug 1261048 - Fix shortcut modifier bug with Flame Graph. r=jsantell

--HG--
extra : rebase_source : 582274ab347a66197c953c0d896b184fbf5f2978
This commit is contained in:
Greg Tatum 2016-07-18 07:33:00 +02:00
Родитель 5d3c3e5175
Коммит e119f38a8d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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;