Version: 1.6.0 (using KDE 3.5.7, Debian Package 4:3.5.7.dfsg.1-4 (lenny/sid)) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.21-2-686 Right-clicking should not change the status of something in the window, including the task complete tick-box.
This is a junior job (JJ).
Created attachment 21585 [details] Left click only completion This is a (proposed) patch to fix this bug. Since it's my first kde patch, I hope I did everything ok. If not, please let me know.
looks correct!
SVN commit 710766 by tstaerk: Do not set completed flag when clicking with the right mouse button. BUGS: 149589 M +3 -2 taskview.cpp --- branches/KDE/3.5/kdepim/karm/taskview.cpp #710765:710766 @@ -131,8 +131,9 @@ int leftborder = treeStepSize() * ( task->depth() + ( rootIsDecorated() ? 1 : 0)) + itemMargin(); if ((leftborder < e->x()) && (e->x() < 19 + leftborder )) { - if ( task->isComplete() ) task->setPercentComplete( 0, _storage ); - else task->setPercentComplete( 100, _storage ); + if ( e->button() == LeftButton ) + if ( task->isComplete() ) task->setPercentComplete( 0, _storage ); + else task->setPercentComplete( 100, _storage ); } emit updateButtons(); }