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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-04-29 16:01:55 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-04-30 12:34:22 +0300
commita17d1e4bc8d166e9e6bb2ad49201e09382115962 (patch)
treeb9c640d75172897adcb9778e00875e496a7e6634 /source/blender/editors/space_node
parent3d0864200d357cac40415db3d9d9df57b45b4bcb (diff)
Cleanup: use bool literal for booleans.
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_select.c b/source/blender/editors/space_node/node_select.c
index 2d234c57a35..a5e37ceae96 100644
--- a/source/blender/editors/space_node/node_select.c
+++ b/source/blender/editors/space_node/node_select.c
@@ -587,7 +587,7 @@ void NODE_OT_select(wmOperatorType *ot)
RNA_def_boolean(ot->srna, "socket_select", false, "Socket Select", "");
RNA_def_boolean(ot->srna,
"deselect_all",
- 0,
+ false,
"Deselect On Nothing",
"Deselect all when nothing under the cursor");
}