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>2019-05-16 16:17:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-16 16:21:20 +0300
commitbd0f26e2de7b66aaec7583575ee247f00cdb8448 (patch)
treeebaa444c16f6382117cf3ec1e654733955103574 /source/blender/makesrna
parent9c1ec1d132c20b2a12ebf197e617014f65780d94 (diff)
Fix T64576: Duplicate option in the header
D4856 by @Gvgeo
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index f6515648164..6163084ce8d 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -633,7 +633,7 @@ static void rna_Space_show_region_header_set(PointerRNA *ptr, bool value)
ScrArea *sa = rna_area_from_space(ptr);
ARegion *ar_tool_header = BKE_area_find_region_type(sa, RGN_TYPE_TOOL_HEADER);
if (ar_tool_header != NULL) {
- value = !(ar_tool_header->flag & RGN_FLAG_HIDDEN_BY_USER);
+ value_for_tool_header = !(ar_tool_header->flag & RGN_FLAG_HIDDEN_BY_USER);
}
}
rna_Space_bool_from_region_flag_set_by_type(