summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-02-01 07:12:47 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-02-01 07:12:47 +0000
commite20f69147d0f0d8c5e3abf087ff39724014fe251 (patch)
treed9a943aee8f4696c5c6b86c633038ef295b90f2d /cocoa
parenta8bc5d391660a3129775a8b72cc4182b35d7b261 (diff)
downloadnetsurf-e20f69147d0f0d8c5e3abf087ff39724014fe251.tar.gz
netsurf-e20f69147d0f0d8c5e3abf087ff39724014fe251.tar.bz2
Added move cursor.
svn path=/trunk/netsurf/; revision=11576
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/gui.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/cocoa/gui.m b/cocoa/gui.m
index a160efa32..0acd6bcc4 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -221,6 +221,10 @@ void gui_window_set_pointer(struct gui_window *g, gui_pointer_shape shape)
case GUI_POINTER_CARET:
[[NSCursor IBeamCursor] set];
break;
+
+ case GUI_POINTER_MOVE:
+ [[NSCursor closedHandCursor] set];
+ break;
default:
NSLog( @"Other cursor %d requested", shape );