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:
authorHarley Acheson <harley>2019-02-21 19:22:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-02-21 20:03:34 +0300
commit86bbadaaee949f39f28436ff65c65ae6b194a3c3 (patch)
tree53599ee21d7619d693a0ffa8dbd720ff589959bc /source/blender/windowmanager/wm_cursors.h
parenta1e531ebbdc55d25be3f995e15ecb10571fd85d7 (diff)
UI: improve corner splitting feedback by showing custom cursors.
* Two cursors for horizontal and vertical split. * Four cursors for each join direction. * One cursor to indicate when splitting is not possible. Differential Revision: https://developer.blender.org/D4264
Diffstat (limited to 'source/blender/windowmanager/wm_cursors.h')
-rw-r--r--source/blender/windowmanager/wm_cursors.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/blender/windowmanager/wm_cursors.h b/source/blender/windowmanager/wm_cursors.h
index b43dc1f9a13..e42213bf362 100644
--- a/source/blender/windowmanager/wm_cursors.h
+++ b/source/blender/windowmanager/wm_cursors.h
@@ -86,7 +86,14 @@ enum {
BC_EW_SCROLLCURSOR,
BC_EYEDROPPER_CURSOR,
BC_SWAPAREA_CURSOR,
-/* --- ALWAYS LAST ----- */
+ BC_H_SPLITCURSOR,
+ BC_V_SPLITCURSOR,
+ BC_N_ARROWCURSOR,
+ BC_S_ARROWCURSOR,
+ BC_E_ARROWCURSOR,
+ BC_W_ARROWCURSOR,
+ BC_STOPCURSOR,
+ /* --- ALWAYS LAST ----- */
BC_NUMCURSORS,
};