Bug 1574830 - Scanning should not show an overlay. r=bhackett

Differential Revision: https://phabricator.services.mozilla.com/D42443

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jason Laster 2019-08-19 14:39:14 +00:00
Родитель 8f75b0e335
Коммит 6845094e87
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -441,6 +441,12 @@ const ThreadActor = ActorClassWithSpec(threadSpec, {
this.pauseOverlay
) {
const reason = this._priorPause.why.type;
// Do not show the pause overlay when scanning
if (this.dbg.replaying) {
return;
}
this.pauseOverlay.show(null, { reason });
}
},