From 9d28353b525ecfbcca1501be72e4276dfb2bbc2a Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 13 Nov 2020 13:56:55 -0500 Subject: Cleanup: Make panel type flag names more clear The overlap with the `Panel` flags that start with "PNL" was quite confusing because wasn't clear which enum a flag was from. The new names are a bit longer, but the clarity is worth it. --- source/blender/editors/space_clip/clip_buttons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_clip') diff --git a/source/blender/editors/space_clip/clip_buttons.c b/source/blender/editors/space_clip/clip_buttons.c index f3bac697044..a95d0e3ea88 100644 --- a/source/blender/editors/space_clip/clip_buttons.c +++ b/source/blender/editors/space_clip/clip_buttons.c @@ -95,7 +95,7 @@ void ED_clip_buttons_register(ARegionType *art) strcpy(pt->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA); pt->poll = metadata_panel_context_poll; pt->draw = metadata_panel_context_draw; - pt->flag |= PNL_DEFAULT_CLOSED; + pt->flag |= PANEL_TYPE_DEFAULT_CLOSED; BLI_addtail(&art->paneltypes, pt); } -- cgit v1.2.3