Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2011-03-07 17:56:19 +0300
committerTon Roosendaal <ton@blender.org>2011-03-07 17:56:19 +0300
commit2818add58689b2c126662dc2db056a06a5f937ff (patch)
treebc7e776506d63f4a411989f07a10efb80831e26c /source/blender/windowmanager/wm_cursors.h
parentc9685af1ffc0ee4cfb5411de04fbfd317b05af4d (diff)
From the OFTL:
Arrows-move-cursor is back! It now works for any running modal operator that doesn't handle own arrow keys. Might need to become more restricted though, some modal ops don't need it. Want to investigate that still where conflicts are.
Diffstat (limited to 'source/blender/windowmanager/wm_cursors.h')
-rw-r--r--source/blender/windowmanager/wm_cursors.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/windowmanager/wm_cursors.h b/source/blender/windowmanager/wm_cursors.h
index c858b9d94f3..5f262f34724 100644
--- a/source/blender/windowmanager/wm_cursors.h
+++ b/source/blender/windowmanager/wm_cursors.h
@@ -116,5 +116,11 @@ enum {
#define SMALL_CURSOR 0
#define BIG_CURSOR 1
+struct wmWindow;
+struct wmEvent;
+
+int wm_cursor_arrow_move(struct wmWindow *win, struct wmEvent *event);
+
+
#endif /* WM_CURSORS_H */