From: Peter Penz Date: Sat, 27 Mar 2010 13:31:58 +0000 (+0000) Subject: Enable job-transfer indication for file items. X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/f81e93a8315ddfafbe8a70d39f0520618c7ce379 Enable job-transfer indication for file items. Thanks to Shaun Reich for the patch and the implementation behind in kdelibs! svn path=/trunk/KDE/kdebase/apps/; revision=1108002 --- diff --git a/src/dolphinfileitemdelegate.cpp b/src/dolphinfileitemdelegate.cpp index 87ea774f8..17447d8cb 100644 --- a/src/dolphinfileitemdelegate.cpp +++ b/src/dolphinfileitemdelegate.cpp @@ -37,6 +37,7 @@ DolphinFileItemDelegate::DolphinFileItemDelegate(QObject* parent) : m_cachedSize(), m_cachedEmblems() { + setJobTransfersVisible(true); } DolphinFileItemDelegate::~DolphinFileItemDelegate() diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp index 746752b67..35a5fb8f1 100644 --- a/src/dolphinmodel.cpp +++ b/src/dolphinmodel.cpp @@ -48,6 +48,7 @@ DolphinModel::DolphinModel(QObject* parent) : m_hasVersionData(false), m_revisionHash() { + setJobTransfersVisible(true); } DolphinModel::~DolphinModel()