From 6504b22390c1be7ed1444b433f54e665a4a3bb37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 25 Jan 2009 19:57:21 +0000 Subject: [PATCH] * 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 --- src/apps/aboutsystem/HyperTextView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/apps/aboutsystem/HyperTextView.cpp b/src/apps/aboutsystem/HyperTextView.cpp index a06910810f..cb23f2eae7 100644 --- a/src/apps/aboutsystem/HyperTextView.cpp +++ b/src/apps/aboutsystem/HyperTextView.cpp @@ -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); }