From 2952a5a7a338a67729429b4237171b302d8ddd36 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Sun, 14 Mar 2010 09:20:57 +0000 Subject: [PATCH] fix up the statusbar switching --- .../ui/web/js/deluge-all/Deluge.Statusbar.js | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/deluge/ui/web/js/deluge-all/Deluge.Statusbar.js b/deluge/ui/web/js/deluge-all/Deluge.Statusbar.js index 8eb353fa3..cbb0d0f13 100644 --- a/deluge/ui/web/js/deluge-all/Deluge.Statusbar.js +++ b/deluge/ui/web/js/deluge-all/Deluge.Statusbar.js @@ -16,7 +16,7 @@ Ext.deluge.Statusbar = Ext.extend(Ext.ux.StatusBar, { }, createButtons: function() { - this.add({ + this.buttons = this.add({ id: 'statusbar-connections', text: ' ', cls: 'x-btn-text-icon', @@ -60,25 +60,28 @@ Ext.deluge.Statusbar = Ext.extend(Ext.ux.StatusBar, { }, onConnect: function() { - //this.setStatus({ - // iconCls: 'x-connected', - // text: '' - //}); - if (!this.created) this.createButtons(); - else { - this.items.each(function(item) { + this.setStatus({ + iconCls: 'x-connected', + text: '' + }); + if (!this.created) { + this.createButtons(); + } else { + Ext.each(this.buttons, function(item) { item.show(); item.enable(); }); } + this.doLayout(); }, onDisconnect: function() { - //this.clearStatus({useDefaults:true}); - this.items.each(function(item) { + this.clearStatus({useDefaults:true}); + Ext.each(this.buttons, function(item) { item.hide(); item.disable(); }); + this.doLayout(); }, update: function(stats) {