Fix #130325: GPv3: Update overlay on changing active layer in dopesheet

This is due to missing depsgraph update.

Pull Request: https://projects.blender.org/blender/blender/pulls/130367
This commit is contained in:
Pratik Borhade
2024-11-18 11:55:10 +01:00
committed by Pratik Borhade
parent d3d26233fc
commit 7dfe47164a

View File

@@ -4441,6 +4441,7 @@ static int click_select_channel_grease_pencil_layer(bContext *C,
grease_pencil->set_active_layer(layer);
WM_msg_publish_rna_prop(
CTX_wm_message_bus(C), &grease_pencil->id, &grease_pencil, GreasePencilv3Layers, active);
DEG_id_tag_update(&grease_pencil->id, ID_RECALC_GEOMETRY);
}
WM_event_add_notifier(C, NC_GPENCIL | ND_DATA | NA_EDITED, nullptr);