diff --git a/Libraries/LibGUI/LinkLabel.cpp b/Libraries/LibGUI/LinkLabel.cpp index a948554f81..a3045f2e70 100644 --- a/Libraries/LibGUI/LinkLabel.cpp +++ b/Libraries/LibGUI/LinkLabel.cpp @@ -36,6 +36,7 @@ namespace GUI { LinkLabel::LinkLabel(String text) : Label(move(text)) { + set_override_cursor(Gfx::StandardCursor::Hand); set_foreground_role(Gfx::ColorRole::Link); set_focus_policy(FocusPolicy::TabFocus); }