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:
authorCampbell Barton <ideasman42@gmail.com>2013-05-17 17:54:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-17 17:54:44 +0400
commitebda20150d46cdcb161898b1393b9a8dce352e89 (patch)
tree2defbd541725b75a3223c7110d75fc0170cc353d /source/blender/windowmanager/WM_api.h
parente2f58d817a9012b4642b96ef9cff26ed906dd62d (diff)
fix for crash with toggle-drag on a popup (when the popup is closed while dragging).
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index 585201bc559..9830dcb9e9f 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -159,6 +159,9 @@ void WM_event_remove_ui_handler(ListBase *handlers,
void (*remove)(struct bContext *C, void *userdata),
void *userdata, const bool postpone);
void WM_event_remove_area_handler(struct ListBase *handlers, void *area);
+void WM_event_free_ui_handler_all(struct bContext *C, ListBase *handlers,
+ int (*func)(struct bContext *C, const struct wmEvent *event, void *userdata),
+ void (*remove)(struct bContext *C, void *userdata));
struct wmEventHandler *WM_event_add_modal_handler(struct bContext *C, struct wmOperator *op);
void WM_event_remove_handlers(struct bContext *C, ListBase *handlers);