[Bf-blender-cvs] [43139bf8b4c] master: Fix T61428: Node editor's 'Interface' panel shows in all tabs

Philipp Oeser noreply at git.blender.org
Tue Feb 12 15:58:48 CET 2019


Commit: 43139bf8b4cd035995a7bb4a47abcb8d9c3c3e48
Author: Philipp Oeser
Date:   Tue Feb 12 15:35:13 2019 +0100
Branches: master
https://developer.blender.org/rB43139bf8b4cd035995a7bb4a47abcb8d9c3c3e48

Fix T61428: Node editor's 'Interface' panel shows in all tabs

Reviewers: brecht

Maniphest Tasks: T61428

Differential Revision: https://developer.blender.org/D4343

===================================================================

M	source/blender/editors/space_node/node_buttons.c

===================================================================

diff --git a/source/blender/editors/space_node/node_buttons.c b/source/blender/editors/space_node/node_buttons.c
index c98fbabd229..c1c852344ac 100644
--- a/source/blender/editors/space_node/node_buttons.c
+++ b/source/blender/editors/space_node/node_buttons.c
@@ -180,6 +180,7 @@ void node_buttons_register(ARegionType *art)
 
 	pt = MEM_callocN(sizeof(PanelType), "spacetype node panel node sockets");
 	strcpy(pt->idname, "NODE_PT_sockets");
+	strcpy(pt->category, N_("Node"));
 	strcpy(pt->label, N_("Sockets"));
 	strcpy(pt->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA);
 	pt->draw = node_sockets_panel;
@@ -189,6 +190,7 @@ void node_buttons_register(ARegionType *art)
 
 	pt = MEM_callocN(sizeof(PanelType), "spacetype node panel tree interface");
 	strcpy(pt->idname, "NODE_PT_node_tree_interface");
+	strcpy(pt->category, N_("Node"));
 	strcpy(pt->label, N_("Interface"));
 	strcpy(pt->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA);
 	pt->draw = node_tree_interface_panel;



More information about the Bf-blender-cvs mailing list