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:
authorHans Goudey <h.goudey@me.com>2020-12-23 21:13:44 +0300
committerHans Goudey <h.goudey@me.com>2020-12-23 21:13:44 +0300
commitc9efb5424079189951a0eebc968a33787878b039 (patch)
tree4740576815a140f630471b320c272436cf6312d2 /source/blender/makesrna/intern/rna_scene.c
parentd8dc4c5b32b4cb08e2d438d76f6a02e732d23220 (diff)
Cleanup: Clang format
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index b93922e46f2..e37df0225cf 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -4241,8 +4241,9 @@ void rna_def_view_layer_common(StructRNA *srna, const bool scene)
prop = RNA_def_property(srna, "use_ztransp", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "layflag", SCE_LAY_ZTRA);
- RNA_def_property_ui_text(
- prop, "Z-Transparent", "Render Z-transparent faces in this layer (on top of Solid and Halos)");
+ RNA_def_property_ui_text(prop,
+ "Z-Transparent",
+ "Render Z-transparent faces in this layer (on top of Solid and Halos)");
if (scene) {
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
}