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
path: root/source
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2021-12-21 16:28:04 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-12-21 16:28:04 +0300
commit1abf2f3c7c08051502ae0830ab5d4fa8d8d9f13a (patch)
tree55b0947f601aaa87feb40c9b0f9927bc925673c9 /source
parentd13970de8627bab29458a6eef951a84a7962b38a (diff)
Cleanup: clang format
Missed in rB7c9e4099854a, sorry.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_outliner/outliner_edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c
index 282ded43ac1..ba4759826cd 100644
--- a/source/blender/editors/space_outliner/outliner_edit.c
+++ b/source/blender/editors/space_outliner/outliner_edit.c
@@ -705,7 +705,8 @@ void OUTLINER_OT_id_remap(wmOperatorType *ot)
prop = RNA_def_enum(ot->srna, "id_type", rna_enum_id_type_items, ID_OB, "ID Type", "");
RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_ID);
- /* Changing ID type wont make sense, would return early with "Invalid old/new ID pair" anyways. */
+ /* Changing ID type wont make sense, would return early with "Invalid old/new ID pair" anyways.
+ */
RNA_def_property_flag(prop, PROP_HIDDEN);
prop = RNA_def_enum(ot->srna, "old_id", DummyRNA_NULL_items, 0, "Old ID", "Old ID to replace");