fix removing the filter panels upon disconnect
This commit is contained in:
parent
028a35bfc8
commit
c0fd70a856
|
@ -110,9 +110,9 @@ Deluge.Sidebar = Ext.extend(Ext.Panel, {
|
||||||
|
|
||||||
// private
|
// private
|
||||||
onDisconnect: function() {
|
onDisconnect: function() {
|
||||||
Ext.each(Ext.getKeys(this.panels), function(filter) {
|
for (var filter in this.panels) {
|
||||||
this.remove(filter + '-panel');
|
this.remove(this.panels[filter]);
|
||||||
}, this);
|
}
|
||||||
this.panels = {};
|
this.panels = {};
|
||||||
this.selected = null;
|
this.selected = null;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue