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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-06-14 12:14:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-14 12:14:53 +0400
commit34ae5bd378da79787b869962bd8b3da2ee33a430 (patch)
treec9a729e1d2fe76d27312d8216ced7910aa690e53 /source
parent8d96ea832247e4c457bb0f080c079e639a11c405 (diff)
UI: uiContextActivePropertyHandle wasn't passing the event to the uiBlockHandleFunc
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/interface_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c
index 5f8538668b6..c2deee4d542 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -6906,7 +6906,7 @@ void uiContextActivePropertyHandle(bContext *C)
* operator redo panel - campbell */
uiBlock *block = activebut->block;
if (block->handle_func) {
- block->handle_func(C, block->handle_func_arg, 0);
+ block->handle_func(C, block->handle_func_arg, activebut->retval);
}
}
}