From b0e4f2342443d92c9f0f220eaf14abb0115196f6 Mon Sep 17 00:00:00 2001 From: Pullusb Date: Fri, 8 Oct 2021 17:46:50 +0200 Subject: [PATCH] add scene name to viewlayer popup --- ui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ui.py b/ui.py index 4e08877..56474a1 100644 --- a/ui.py +++ b/ui.py @@ -246,6 +246,7 @@ class GPEXP_PT_viewlayers_ui(Panel): bl_label = "View Layers" def draw(self, context): layout = self.layout + layout.label(text=f'{context.scene.name} :: View layers') viewlayer_layout(layout, context) class GPEXP_OT_viewlayer_popup_invoke(bpy.types.Operator):