From c3fa67f98b412a5239ec68f6b371d300fb1fa096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 20 Mar 2010 12:43:33 +0000 Subject: [PATCH] Use the new follow link cursor for hypertext actions... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35921 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/aboutsystem/HyperTextView.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/aboutsystem/HyperTextView.cpp b/src/apps/aboutsystem/HyperTextView.cpp index fd0b68385b..d1bc4e6e4a 100644 --- a/src/apps/aboutsystem/HyperTextView.cpp +++ b/src/apps/aboutsystem/HyperTextView.cpp @@ -29,7 +29,8 @@ HyperTextAction::~HyperTextAction() void HyperTextAction::MouseOver(HyperTextView* view, BPoint where, BMessage* message) { - view->SetViewCursor(B_CURSOR_SYSTEM_DEFAULT); + BCursor linkCursor(B_CURSOR_ID_FOLLOW_LINK); + view->SetViewCursor(&linkCursor); }