[Knode-devel] [Bug 69429] left button mouse click on Message-ID
does not find article; middle button does
Hajo Simons
hsimons at gmx.de
Mon Dec 1 13:58:15 CET 2003
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=69429
------- Additional Comments From hsimons at gmx.de 2003-12-01 13:58 -------
preliminary fix would be:
RCS file: /home/kde/kdepim/knode/knarticlewidget.cpp,v
retrieving revision 1.162
diff -p -U3 -r1.162 knarticlewidget.cpp
--- knarticlewidget.cpp 24 Nov 2003 16:46:27 -0000 1.162
+++ knarticlewidget.cpp 1 Dec 2003 12:56:37 -0000
@@ -379,8 +379,8 @@ bool KNArticleWidget::eventFilter(QObjec
void KNArticleWidget::viewportMousePressEvent(QMouseEvent *e)
{
QString a= anchorAt(viewportToContents(e->pos()));
-
- if(!a.isEmpty() && (e->button()==RightButton || e->button()==MidButton))
+
+ if(!a.isEmpty() && (e->button()!=NoButton))
anchorClicked(a, e->button(), &e->globalPos());
else
if (e->button()==RightButton) {
More information about the Knode-devel
mailing list