mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Account for large files in the files list.
This commit is contained in:
parent
4513531ef4
commit
a352202247
1 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ import pygtk
|
|||
pygtk.require('2.0')
|
||||
import gtk, gtk.glade
|
||||
import gettext
|
||||
import gobject
|
||||
|
||||
import pkg_resources
|
||||
|
||||
|
@ -68,7 +69,7 @@ class AddTorrentDialog:
|
|||
})
|
||||
|
||||
self.torrent_liststore = gtk.ListStore(str, str, str)
|
||||
self.files_liststore = gtk.ListStore(bool, str, int)
|
||||
self.files_liststore = gtk.ListStore(bool, str, gobject.TYPE_UINT64)
|
||||
# Holds the files info
|
||||
self.files = {}
|
||||
self.infos = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue