From f58cbd05dc69ddac92bc39fdec8633fd9fb01f7a Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Tue, 13 Jun 2023 01:58:06 +0200 Subject: [PATCH] Cleanup: format --- .../space_outliner/tree/tree_element_id_linestyle.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_outliner/tree/tree_element_id_linestyle.cc b/source/blender/editors/space_outliner/tree/tree_element_id_linestyle.cc index 217198878e5..f5b3fbe80eb 100644 --- a/source/blender/editors/space_outliner/tree/tree_element_id_linestyle.cc +++ b/source/blender/editors/space_outliner/tree/tree_element_id_linestyle.cc @@ -40,8 +40,12 @@ void TreeElementIDLineStyle::expandTextures(SpaceOutliner &space_outliner) const { for (int a = 0; a < MAX_MTEX; a++) { if (linestyle_.mtex[a]) { - outliner_add_element( - &space_outliner, &legacy_te_.subtree, (linestyle_.mtex[a])->tex, &legacy_te_, TSE_SOME_ID, a); + outliner_add_element(&space_outliner, + &legacy_te_.subtree, + (linestyle_.mtex[a])->tex, + &legacy_te_, + TSE_SOME_ID, + a); } } }