summaryrefslogtreecommitdiffabout
path: root/korganizer
Side-by-side diff
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kotodoview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp
index 99402c4..da8b4bc 100644
--- a/korganizer/kotodoview.cpp
+++ b/korganizer/kotodoview.cpp
@@ -217,11 +217,11 @@ void KOTodoListView::paintEvent(QPaintEvent* e)
void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e)
{
#ifndef KORG_NODND
- QListView::contentsMouseMoveEvent(e);
+ //QListView::contentsMouseMoveEvent(e);
if (mMousePressed && (mPressPos - e->pos()).manhattanLength() >
- QApplication::startDragDistance()) {
+ QApplication::startDragDistance()*3) {
mMousePressed = false;
QListViewItem *item = itemAt(contentsToViewport(mPressPos));
if (item) {
DndFactory factory( mCalendar );
@@ -242,9 +242,9 @@ void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e)
} else
qDebug("DnD: Internal copy: Copy pending");
}
}
- }
+ }
#endif
}
void KOTodoListView::keyPressEvent ( QKeyEvent * e )
{