diff options
author | mkaay <mkaay@mkaay.de> | 2009-12-28 20:44:49 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-12-28 20:44:49 +0100 |
commit | c225a31e70e85c6e400a7ed4407a1fa53de29689 (patch) | |
tree | 94d3d610b719b997c2c851917a2b3e8a04231fcc /module | |
parent | fixed webserver bug (thx nCID) (diff) | |
download | pyload-c225a31e70e85c6e400a7ed4407a1fa53de29689.tar.xz |
you can now drop single links directly into a package
Diffstat (limited to 'module')
-rw-r--r-- | module/gui/Collector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/gui/Collector.py b/module/gui/Collector.py index 07a5203e9..1b1a6b654 100644 --- a/module/gui/Collector.py +++ b/module/gui/Collector.py @@ -88,7 +88,7 @@ class PackageCollector(QThread): item = newPack item.setData(0, Qt.DisplayRole, QVariant(item.getPackData()["package_name"])) item.setData(0, Qt.UserRole, QVariant(pid)) - item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled) + item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled | Qt.ItemIsDropEnabled) def getPack(self, pid): for k, pack in enumerate(ItemIterator(self.rootItem)): |