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:
authorCampbell Barton <ideasman42@gmail.com>2021-07-05 12:09:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-05 12:09:24 +0300
commite785569c95f94ab4df99537b52afa8f14affd181 (patch)
tree0c6664d68c23d747453b7bec8fcb4fcb12a188da /source/blender/editors/space_spreadsheet
parentc9eaf04afbc1d9a389903248e4bcad93aadac2f0 (diff)
Cleanup: clang-tidy
Diffstat (limited to 'source/blender/editors/space_spreadsheet')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_context.cc b/source/blender/editors/space_spreadsheet/spreadsheet_context.cc
index 93d7c6d9804..1ac2075e281 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_context.cc
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_context.cc
@@ -569,7 +569,7 @@ bool ED_spreadsheet_context_path_exists(Main *UNUSED(bmain), SpaceSpreadsheet *s
}
return false;
}
- else if (node->id != nullptr) {
+ if (node->id != nullptr) {
if (GS(node->id->name) != ID_NT) {
return false;
}