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 <eiseljulian@gmail.com>2018-03-23 01:52:38 +0300
committerJulian Eisel <eiseljulian@gmail.com>2018-03-23 01:52:38 +0300
commitaeec19d2e76fc292d21d00090d02c672c3997647 (patch)
tree9fdccc8fa7565f8ea44abf701b6419cc572b7088 /source/blender/windowmanager/WM_api.h
parenta4ea46ffc5570499078c0caeba55121f709e5ee7 (diff)
Fix own mistake from 4cb4556fa5ba78ff
Trying to close Blender from a second window wouldn't work, the first window would have to be hovered first. Ouch!
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index a910e1bce2e..bf26d512589 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -186,7 +186,7 @@ enum {
struct wmEventHandler *WM_event_add_dropbox_handler(ListBase *handlers, ListBase *dropboxes);
/* mouse */
-void WM_event_add_mousemove(struct bContext *C);
+void WM_event_add_mousemove(const struct bContext *C);
bool WM_event_is_modal_tweak_exit(const struct wmEvent *event, int tweak_event);
bool WM_event_is_last_mousemove(const struct wmEvent *event);