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/windowmanager
parent3d0864200d357cac40415db3d9d9df57b45b4bcb (diff)
Cleanup: use bool literal for booleans.
Diffstat (limited to 'source/blender/windowmanager')
-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 5fbf82f68af..ece57f5a63b 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -452,7 +452,7 @@ void WM_operator_properties_mouse_select(wmOperatorType *ot)
prop = RNA_def_boolean(ot->srna,
"deselect_all",
- 0,
+ false,
"Deselect On Nothing",
"Deselect all when nothing under the cursor");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);