remove the button to launch the unfinished file browser

This commit is contained in:
Damien Churchill 2010-04-28 13:28:00 +01:00
parent cd10555a8a
commit 00dc5f0128
1 changed files with 11 additions and 11 deletions

View File

@ -68,17 +68,17 @@ Deluge.MoveStorage = Ext.extend(Ext.Window, {
name: 'location',
width: 240
});
this.form.add({
xtype: 'button',
text: _('Browse'),
handler: function() {
if (!this.fileBrowser) {
this.fileBrowser = new Deluge.FileBrowser();
}
this.fileBrowser.show();
},
scope: this
});
//this.form.add({
// xtype: 'button',
// text: _('Browse'),
// handler: function() {
// if (!this.fileBrowser) {
// this.fileBrowser = new Deluge.FileBrowser();
// }
// this.fileBrowser.show();
// },
// scope: this
//});
},
hide: function() {