mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
fix a bug introduced by a name case change
This commit is contained in:
parent
c2140339a5
commit
13a2927762
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ Deluge.Widgets.Details = new Class({
|
||||||
|
|
||||||
this.files.addEvent('menuAction', function(e) {
|
this.files.addEvent('menuAction', function(e) {
|
||||||
files = [];
|
files = [];
|
||||||
this.files.grid.get_selected().each(function(file) {
|
this.files.grid.getSelected().each(function(file) {
|
||||||
files.push(file.fileIndex);
|
files.push(file.fileIndex);
|
||||||
});
|
});
|
||||||
e.files = files;
|
e.files = files;
|
||||||
|
@ -285,7 +285,7 @@ Deluge.Widgets.FilesPage = new Class({
|
||||||
this.grid.rows.empty()
|
this.grid.rows.empty()
|
||||||
this.grid.body.empty()
|
this.grid.body.empty()
|
||||||
}
|
}
|
||||||
this.grid.update_files(torrent)
|
this.grid.updateFiles(torrent)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue