summaryrefslogtreecommitdiffabout
path: root/korganizer
Side-by-side diff
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/kotodoview.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp
index 82c0f4c..00c2d97 100644
--- a/korganizer/kotodoview.cpp
+++ b/korganizer/kotodoview.cpp
@@ -414,7 +414,7 @@ void KOTodoListView::keyPressEvent ( QKeyEvent * e )
if (! e->isAutoRepeat() )
mFlagKeyPressed = true;
QListViewItem* cn;
- if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) {
+ if ( (e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter) && mName != "todolistsmall") {
cn = currentItem();
if ( cn ) {
KOTodoViewItem* ci = (KOTodoViewItem*)( cn );
@@ -1692,12 +1692,9 @@ void KOTodoView::keyPressEvent ( QKeyEvent * e )
}
}
- e->accept();
-
+ e->accept();
}
-
}
-
}
void KOTodoView::updateTodo( Todo * t, int type )
{