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:
authorOmar Emara <mail@OmarEmara.dev>2022-06-14 11:22:03 +0300
committerOmar Emara <mail@OmarEmara.dev>2022-06-14 11:22:03 +0300
commitf1de6d9348ec8a331c98e67422f0f96ce63db1d0 (patch)
treef3d884b12c0715622bf9e68c98c89f321bd8ad01
parent59f5d10d73f6d5730ceb17161eb04b1854ff98fc (diff)
Realtime Compositor: Cleanup UI names
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
-rw-r--r--source/blender/makesrna/intern/rna_space.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e4fa15e4e02..8830421383f 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -6107,7 +6107,7 @@ class VIEW3D_PT_shading_render_pass(Panel):
class VIEW3D_PT_shading_compositor(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'HEADER'
- bl_label = "Compositor"
+ bl_label = "Realtime Compositor"
bl_parent_id = 'VIEW3D_PT_shading'
@classmethod
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index ee3857d53e2..b87c39f2c3c 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -4197,7 +4197,8 @@ static void rna_def_space_view3d_shading(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag", V3D_SHADING_COMPOSITOR);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_boolean_default(prop, false);
- RNA_def_property_ui_text(prop, "Compositor", "Preview compositor output inside the viewport");
+ RNA_def_property_ui_text(
+ prop, "Use Compositor", "Preview the compositor output inside the viewport in realtime");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D | NS_VIEW3D_SHADING, NULL);
}