Bug 1459257 - Check the inspector is visible before showing the 3 pane onboarding tooltip. r=jdescottes

This commit is contained in:
Gabriel Luong 2018-05-04 13:33:07 -04:00
Родитель d0a001f04f
Коммит 4fab290a32
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -296,7 +296,9 @@ Inspector.prototype = {
// Setup the toolbar only now because it may depend on the document.
await this.setupToolbar();
if (this.show3PaneTooltip) {
// Show the 3 pane onboarding tooltip only if the inspector is visisble since the
// Accessibility panel initializes the Inspector.
if (this.show3PaneTooltip && this.toolbox.currentToolId === "inspector") {
this.threePaneTooltip = new ThreePaneOnboardingTooltip(this.toolbox, this.panelDoc);
}