Fix T80363: Progress cursor getting stuck

This commit is contained in:
Julian Eisel 2020-09-15 12:41:26 +02:00
parent f492c8d488
commit 7b66c719ae
Notes: blender-bot 2023-02-13 21:19:08 +01:00
Referenced by issue #80363, When importing an obj the cursor icon gets stuck in progress mode
Referenced by issue #80333, Cursor not reset properly (disappears after rotating navigation gizmo, stuck after importing)
Referenced by issue #80333, Cursor not reset properly (disappears after rotating navigation gizmo, stuck after importing)
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}
/**