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:
authorJulian Eisel <julian@blender.org>2020-09-15 13:41:26 +0300
committerJulian Eisel <julian@blender.org>2020-09-15 13:41:26 +0300
commit7b66c719aefde816e6159d058db45a697daa5ec8 (patch)
tree9c26da84380698f2533260004c4c08afffaf7848
parentf492c8d488b7eb2166ca894e10a8128a1678a885 (diff)
Fix T80363: Progress cursor getting stuck
-rw-r--r--source/blender/windowmanager/intern/wm_cursors.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c
index 8e89c08a831..838a1328bdc 100644
--- a/source/blender/windowmanager/intern/wm_cursors.c
+++ b/source/blender/windowmanager/intern/wm_cursors.c
@@ -374,6 +374,8 @@ void WM_cursor_time(wmWindow *win, int nr)
}
window_set_custom_cursor(win, mask, bitmap, 7, 7);
+ /* Unset current cursor value so it's properly reset to wmWindow.lastcursor. */
+ win->cursor = 0;
}
/**