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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-11-06 18:01:08 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-11-08 16:03:40 +0300
commitfe2b92d7893ea9d4bb4fabd68a30385a5260d80e (patch)
treeb12bdf01ab2eecad78c52c58eec19a13a2a49e88
parent5cf5dfcfadf5d276931ea4e5f634b92cccdba124 (diff)
Fix T55632: USE_DRAG_MULTINUM and USE_ALLSELECT not working well together
'is_copy' was not set correctly on all uiButMultiState (it was done once for uiHandleButtonData), resulting in 'delta' being used on some indices of the array and not others in `ui_selectcontext_apply`. Maniphest Tasks: T55632 Differential Revision: https://developer.blender.org/D6201
-rw-r--r--source/blender/editors/interface/interface_handlers.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c
index e7d80306ecb..2d739899ae8 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -1086,6 +1086,9 @@ static void ui_multibut_add(uiHandleButtonData *data, uiBut *but)
mbut_state = MEM_callocN(sizeof(*mbut_state), __func__);
mbut_state->but = but;
mbut_state->origvalue = ui_but_value_get(but);
+# ifdef USE_ALLSELECT
+ mbut_state->select_others.is_copy = data->select_others.is_copy;
+# endif
BLI_linklist_prepend(&data->multi_data.mbuts, mbut_state);