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 <julian@blender.org>2020-10-13 16:43:21 +0300
committerJulian Eisel <julian@blender.org>2020-10-13 16:53:27 +0300
commit48b52e06b0bd75c0f143fb53d87e29ece81ec2d1 (patch)
tree509e278284fba1d5ef18f94a52af64a9a6a30461 /source/blender/editors/space_node
parentc82d167d814fee9dbf462c891282e1e35916e8c8 (diff)
Cleanup: Remove unused properties from node Viewer Region operator
The operator would define the `deselect` and `extend` properties, without actually using them. It's confusing to have them in the keymap item UI.
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c
index 894da811ed4..b1659bcd023 100644
--- a/source/blender/editors/space_node/node_edit.c
+++ b/source/blender/editors/space_node/node_edit.c
@@ -2724,7 +2724,7 @@ void NODE_OT_viewer_border(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* properties */
- WM_operator_properties_gesture_box_select(ot);
+ WM_operator_properties_gesture_box(ot);
}
static int clear_viewer_border_exec(bContext *C, wmOperator *UNUSED(op))