Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-12-18 16:46:01 +0300
committerTon Roosendaal <ton@blender.org>2005-12-18 16:46:01 +0300
commite14ff3de3d4a2c9ee11ea53dde4a3a0e33395c0b (patch)
tree04cf3f1c27eecc66086394118ae80a180d2c4e1f /source/blender/src/headerbuttons.c
parent510403277be6c5b34d01b386bfbf66871348f555 (diff)
Orange:
- Sunday merger with bf-blender - Foundations for new Node editor in Blender, generic framework that can be used for Material/Texture, Compositing, Logic or maybe even Sequencer. Note: this doesn't do anything yet, nor save! Is just to get this nice in CVS now. :)
Diffstat (limited to 'source/blender/src/headerbuttons.c')
-rw-r--r--source/blender/src/headerbuttons.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/headerbuttons.c b/source/blender/src/headerbuttons.c
index d05904c74a8..c2551bd265a 100644
--- a/source/blender/src/headerbuttons.c
+++ b/source/blender/src/headerbuttons.c
@@ -208,6 +208,7 @@ char *windowtype_pup(void)
strcat(string, "|User Preferences %x7"); //213
strcat(string, "|Outliner %x3"); //232
strcat(string, "|Buttons Window %x4"); //251
+ strcat(string, "|Node Editor %x16");
strcat(string, "|%l"); //254
@@ -1979,7 +1980,8 @@ void do_headerbuttons(short event)
else if(event<700) do_sound_buttons(event);
else if(event<750) do_action_buttons(event);
else if(event<800) do_time_buttons(curarea, event);
- else if(event<900) do_nla_buttons(event);
+ else if(event<850) do_nla_buttons(event);
+ else if(event<900) do_node_buttons(curarea, event);
else if(event>=REDRAWVIEW3D) allqueue(event, 0);
}