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:
authorJulian Eisel <julian_eisel@web.de>2015-02-17 04:08:12 +0300
committerJulian Eisel <julian_eisel@web.de>2015-02-17 04:12:23 +0300
commit89412028cefd9454b12f3ddf6580a8d1414b58c7 (patch)
tree754a4a0aa2e85289b52eaf8adcf52f217be1c071 /source/blender/editors/space_outliner
parent070f516b522e0f64c681e488348dad1f5f4ea83e (diff)
Fix T43669: Grease Pencil visibility toggle not working in Outliner
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index be108432f0f..2c61e69d611 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -353,7 +353,7 @@ static void restrictbutton_ebone_visibility_cb(bContext *C, void *UNUSED(poin),
static void restrictbutton_gp_layer_flag_cb(bContext *C, void *UNUSED(poin), void *UNUSED(poin2))
{
- WM_event_add_notifier(C, NC_GPENCIL | ND_DATA, NULL);
+ WM_event_add_notifier(C, NC_GPENCIL | ND_DATA | NA_EDITED, NULL);
}
static int group_restrict_flag(Group *gr, int flag)