* calls BTextView hooks, this allows to select text (see bug #2497)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29018 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2009-01-25 19:57:21 +00:00
parent 280987e2cb
commit 6504b22390
+4
View File
@@ -106,6 +106,8 @@ void
HyperTextView::MouseDown(BPoint where)
{
// We eat all mouse button events.
BTextView::MouseDown(where);
}
@@ -117,6 +119,8 @@ HyperTextView::MouseUp(BPoint where)
HyperTextAction* action = _ActionAt(where);
if (action != NULL)
action->Clicked(this, where, message);
BTextView::MouseUp(where);
}