mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
fix removing the filter panels upon disconnect
This commit is contained in:
parent
028a35bfc8
commit
c0fd70a856
1 changed files with 3 additions and 3 deletions
|
@ -110,9 +110,9 @@ Deluge.Sidebar = Ext.extend(Ext.Panel, {
|
|||
|
||||
// private
|
||||
onDisconnect: function() {
|
||||
Ext.each(Ext.getKeys(this.panels), function(filter) {
|
||||
this.remove(filter + '-panel');
|
||||
}, this);
|
||||
for (var filter in this.panels) {
|
||||
this.remove(this.panels[filter]);
|
||||
}
|
||||
this.panels = {};
|
||||
this.selected = null;
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue