From 35cd649c6625b55aad277fdbeaa87cc5d21b65ce Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Sep 2013 22:34:29 +0000 Subject: rename cursor setting functions to make modal set/restore more clearly related functions. --- source/blender/editors/space_node/node_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_node/node_edit.c') diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c index 3ba749a8eff..ff6a8e884a6 100644 --- a/source/blender/editors/space_node/node_edit.c +++ b/source/blender/editors/space_node/node_edit.c @@ -854,14 +854,14 @@ static void node_resize_init(bContext *C, wmOperator *op, const wmEvent *UNUSED( nsw->oldminiwidth = node->miniwidth; nsw->directions = dir; - WM_cursor_modal(CTX_wm_window(C), node_get_resize_cursor(dir)); + WM_cursor_modal_set(CTX_wm_window(C), node_get_resize_cursor(dir)); /* add modal handler */ WM_event_add_modal_handler(C, op); } static void node_resize_exit(bContext *C, wmOperator *op, int UNUSED(cancel)) { - WM_cursor_restore(CTX_wm_window(C)); + WM_cursor_modal_restore(CTX_wm_window(C)); MEM_freeN(op->customdata); op->customdata = NULL; -- cgit v1.2.3