summaryrefslogtreecommitdiffstats
path: root/module/gui
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2009-12-28 20:44:49 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2009-12-28 20:44:49 +0100
commitc225a31e70e85c6e400a7ed4407a1fa53de29689 (patch)
tree94d3d610b719b997c2c851917a2b3e8a04231fcc /module/gui
parentfixed webserver bug (thx nCID) (diff)
downloadpyload-c225a31e70e85c6e400a7ed4407a1fa53de29689.tar.xz
you can now drop single links directly into a package
Diffstat (limited to 'module/gui')
-rw-r--r--module/gui/Collector.py2
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)):