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 <bastien@blender.org>2020-09-25 11:20:33 +0300
committerBastien Montagne <bastien@blender.org>2020-09-25 11:24:32 +0300
commitdb76de147e9ab74ba1355198c1c28bc924a990ce (patch)
treebcfde45170f771d618ffe4fbaee7682dc5e5c9fc /source/blender/editors/space_graph/graph_ops.c
parent59afbf0c047588fc3d819b22d7a854e37b20d081 (diff)
Cleanup: SpaceGraph ED code: use boolean litterals when needed.
Diffstat (limited to 'source/blender/editors/space_graph/graph_ops.c')
-rw-r--r--source/blender/editors/space_graph/graph_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_ops.c b/source/blender/editors/space_graph/graph_ops.c
index de25a2d990d..22c185e36e5 100644
--- a/source/blender/editors/space_graph/graph_ops.c
+++ b/source/blender/editors/space_graph/graph_ops.c
@@ -66,7 +66,7 @@ static bool graphview_cursor_poll(bContext *C)
{
/* prevent changes during render */
if (G.is_rendering) {
- return 0;
+ return false;
}
return ED_operator_graphedit_active(C);