┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-03-12 19:31:38 +0000
committerPeter Penz <[email protected]>2007-03-12 19:31:38 +0000
commite57e30e6c16422e590bcd39e7b5f058f858cbfa4 (patch)
tree7ad8ca5e34bb941ea3bb9132b494a4f2ebd23c68 /src
parent121893066f82a563e95be17f1381377666668fa1 (diff)
fix the accidentally testvalue of 1000 ms to 0 ms as originally intended...
svn path=/trunk/KDE/kdebase/apps/; revision=641866
Diffstat (limited to 'src')
-rw-r--r--src/dolphinview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 60e929eba..f06aa09a4 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -756,7 +756,7 @@ void DolphinView::generatePreviews(const KFileItemList& items)
const QMimeData* mimeData = QApplication::clipboard()->mimeData();
if (KonqMimeData::decodeIsCutSelection(mimeData)) {
- QTimer::singleShot(1000, this, SLOT(applyCutEffect()));
+ QTimer::singleShot(0, this, SLOT(applyCutEffect()));
}
}