set values to blank rather than the initial bogus values first used

This commit is contained in:
Damien Churchill 2009-04-24 18:31:17 +00:00
commit 3b744ae978

View file

@ -19,30 +19,30 @@
createButtons: function() { createButtons: function() {
this.add({ this.add({
id: 'statusbar-connections', id: 'statusbar-connections',
text: '200 (200)', text: ' ',
cls: 'x-btn-text-icon', cls: 'x-btn-text-icon',
iconCls: 'x-deluge-connections', iconCls: 'x-deluge-connections',
menu: Deluge.Menus.Connections menu: Deluge.Menus.Connections
}, '-', { }, '-', {
id: 'statusbar-downspeed', id: 'statusbar-downspeed',
text: '9.8KiB/s (30 KiB/s)', text: ' ',
cls: 'x-btn-text-icon', cls: 'x-btn-text-icon',
iconCls: 'x-deluge-downloading', iconCls: 'x-deluge-downloading',
menu: Deluge.Menus.Download menu: Deluge.Menus.Download
}, '-', { }, '-', {
id: 'statusbar-upspeed', id: 'statusbar-upspeed',
text: '9.8KiB/s (30 KiB/s)', text: ' ',
cls: 'x-btn-text-icon', cls: 'x-btn-text-icon',
iconCls: 'x-deluge-seeding', iconCls: 'x-deluge-seeding',
menu: Deluge.Menus.Upload menu: Deluge.Menus.Upload
}, '-', { }, '-', {
id: 'statusbar-traffic', id: 'statusbar-traffic',
text: '1.53/2,65 KiB/s', text: ' ',
cls: 'x-btn-text-icon', cls: 'x-btn-text-icon',
iconCls: 'x-deluge-traffic' iconCls: 'x-deluge-traffic'
}, '-', { }, '-', {
id: 'statusbar-dht', id: 'statusbar-dht',
text: '161', text: ' ',
cls: 'x-btn-text-icon', cls: 'x-btn-text-icon',
iconCls: 'x-deluge-dht' iconCls: 'x-deluge-dht'
}); });