Bug 1327953 - Fix enabling the 'Restore Default Search Engines' button when removing a default engine, r=Standard8.

This commit is contained in:
Florian Quèze 2017-01-30 08:10:00 +01:00
Родитель 8e593b76bd
Коммит bb2e204d5d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -397,9 +397,9 @@ EngineStore.prototype = {
if (index == -1)
throw new Error("invalid engine?");
this._engines.splice(index, 1);
let removedEngine = this._engines.splice(index, 1)[0];
if (this._defaultEngines.some(this._isSameEngine, this._engines[index]))
if (this._defaultEngines.some(this._isSameEngine, removedEngine))
gSearchPane.showRestoreDefaults(true);
gSearchPane.buildDefaultEngineDropDown();
return index;