Fix T68161: typo in ui_text of RNA scene.objects

This commit is contained in:
Philipp Oeser 2019-08-03 12:14:49 +02:00
parent 3232fc335d
commit 5e5cf9ea9f
Notes: blender-bot 2023-02-14 01:23:31 +01:00
Referenced by issue #68175, Double click is recognized even when the first click is consumed to close a menu
Referenced by issue #68161, Order of words
1 changed files with 1 additions and 1 deletions

View File

@ -6276,7 +6276,7 @@ static void rna_def_scene_objects(BlenderRNA *brna, PropertyRNA *cprop)
RNA_def_property_srna(cprop, "SceneObjects");
srna = RNA_def_struct(brna, "SceneObjects", NULL);
RNA_def_struct_sdna(srna, "Scene");
RNA_def_struct_ui_text(srna, "Scene Objects", "All the of scene objects");
RNA_def_struct_ui_text(srna, "Scene Objects", "All of the scene objects");
}
/* scene.timeline_markers */