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); }