diff options
| author | Peter Penz <[email protected]> | 2007-03-12 19:31:38 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-03-12 19:31:38 +0000 |
| commit | e57e30e6c16422e590bcd39e7b5f058f858cbfa4 (patch) | |
| tree | 7ad8ca5e34bb941ea3bb9132b494a4f2ebd23c68 /src | |
| parent | 121893066f82a563e95be17f1381377666668fa1 (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.cpp | 2 |
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())); } } |
