diff options
| author | nyamatongwe <devnull@localhost> | 2003-03-23 02:08:48 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-03-23 02:08:48 +0000 |
| commit | 41c60dd01a0968b658fb433e8cf35a36c3b7ac4c (patch) | |
| tree | 76e707ddd1bf6d9a0ec4bd7a500fce8372235002 /gtk | |
| parent | a72365de506a64b46cd45b5e49e733e3eb194c29 (diff) | |
| download | scintilla-mirror-41c60dd01a0968b658fb433e8cf35a36c3b7ac4c.tar.gz | |
Added a hand cursor.
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/PlatGTK.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index c6fe2b1fd..9585d4138 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -1512,6 +1512,9 @@ void Window::SetCursor(Cursor curs) { case cursorWait: gdkCurs = gdk_cursor_new(GDK_WATCH); break; + case cursorHand: + gdkCurs = gdk_cursor_new(GDK_HAND2); + break; case cursorReverseArrow: gdkCurs = gdk_cursor_new(GDK_RIGHT_PTR); break; |
