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>2019-10-14 12:55:49 +0300
committerJulian Eisel <eiseljulian@gmail.com>2019-10-14 13:11:13 +0300
commit80fe0ac7ff8cf44cc7f3706ea47270a1e794e1ff (patch)
tree935c135bc8e4039ad4e1a942dae387cf6a8254a6 /source/blender
parent0fb55ff845fcaa76d9b540c2fbdd3e1b4671a7e7 (diff)
Fix T70581: Node Wrangler output switching broken
When executing the node selection operator through Python, or in fact any similar select operator with drag-all-selected support, the operator was enabling modal execution, which should not be done in this case. Reason was simply a wrong default for an internal property.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/windowmanager/intern/wm_operator_props.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index 395de89c0da..21636153904 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -399,7 +399,7 @@ void WM_operator_properties_select_operation_simple(wmOperatorType *ot)
void WM_operator_properties_generic_select(wmOperatorType *ot)
{
PropertyRNA *prop = RNA_def_boolean(
- ot->srna, "wait_to_deselect_others", true, "Wait to Deselect Others", "");
+ ot->srna, "wait_to_deselect_others", false, "Wait to Deselect Others", "");
RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
RNA_def_int(ot->srna, "mouse_x", 0, INT_MIN, INT_MAX, "Mouse X", "", INT_MIN, INT_MAX);