Bug 624961 - GroupItems.unregister() must remove groups from _arrangesPending[] [r=ian, a=beltzner]

This commit is contained in:
Tim Taubert 2011-01-18 13:40:13 +01:00
Родитель 2f4b905215
Коммит ed0b1bffef
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1950,6 +1950,10 @@ let GroupItems = {
if (groupItem == this._activeGroupItem)
this._activeGroupItem = null;
this._arrangesPending = this._arrangesPending.filter(function (pending) {
return groupItem != pending.groupItem;
});
UI.updateTabButton();
},