Fix T52650:Grease pencil selection its not automatically updating in Clip Editor

This commit is contained in:
Antonio Vazquez 2017-09-08 11:21:49 +02:00
parent 2a3a747ca2
commit c9afc41cfd
Notes: blender-bot 2023-12-08 16:39:08 +01:00
Referenced by issue #52650, Grease pencil selection its not automatically updating in Clip Editor
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static void rna_GPencil_editmode_update(Main *UNUSED(bmain), Scene *UNUSED(scene
{
/* Notify all places where GPencil data lives that the editing state is different */
WM_main_add_notifier(NC_GPENCIL | NA_EDITED, NULL);
WM_main_add_notifier(NC_SCENE | ND_MODE, NULL);
WM_main_add_notifier(NC_SCENE | ND_MODE | NC_MOVIECLIP, NULL);
}
static void rna_GPencil_onion_skinning_update(Main *bmain, Scene *scene, PointerRNA *ptr)