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>2018-07-06 15:40:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-06 15:40:13 +0300
commit3527857cdca1f5d07037f20fed9840efe1954a57 (patch)
tree28f084ab08aaedd305be50830d810a703ffeace5 /source/blender/editors/space_outliner/outliner_select.c
parent0987c11c768367f2d236683c6ae0c39c55891bbd (diff)
Cleanup: use outliner_flag_* name prefix
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_select.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index 5149715740f..e40ba867049 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -988,7 +988,7 @@ static bool do_outliner_item_activate_from_cursor(
/* all below close/open? */
if (extend) {
tselem->flag &= ~TSE_CLOSED;
- outliner_set_flag(&te->subtree, TSE_CLOSED, !outliner_has_one_flag(&te->subtree, TSE_CLOSED, 1));
+ outliner_flag_set(&te->subtree, TSE_CLOSED, !outliner_flag_is_any_test(&te->subtree, TSE_CLOSED, 1));
}
else {
if (tselem->flag & TSE_CLOSED) tselem->flag &= ~TSE_CLOSED;