From 1e29849da02a092fbbcabca211bab7bd30dc0bf9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 11 Feb 2016 23:47:17 +1100 Subject: [PATCH] Fix for cursor not being reset on file load caused by 6081f6c3 --- source/blender/blenloader/intern/readfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 2935b118c3a..17567ae840a 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -6064,7 +6064,7 @@ static void direct_link_windowmanager(FileData *fd, wmWindowManager *wm) win->lastcursor = 0; win->modalcursor = 0; win->grabcursor = 0; - win->addmousemove = 0; + win->addmousemove = true; win->multisamples = 0; win->stereo3d_format = newdataadr(fd, win->stereo3d_format);