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:
authorMatt Ebb <matt@mke3.net>2004-11-14 16:35:57 +0300
committerMatt Ebb <matt@mke3.net>2004-11-14 16:35:57 +0300
commit3e8d8f482568c26885cb108f2c8e0b3ad89f2904 (patch)
treebb0936c3bac42382c704b27903d664e72a5b5a72
parent847ff75b359f9996c342709d69a2f82f8398fa38 (diff)
Since the outliner is now the default (rather than the OOPS
Schematic), we now call it 'Outliner' in the menu.
-rw-r--r--source/blender/src/headerbuttons.c2
-rw-r--r--source/blender/src/space.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/headerbuttons.c b/source/blender/src/headerbuttons.c
index 5d43e575a9a..9662c64d86c 100644
--- a/source/blender/src/headerbuttons.c
+++ b/source/blender/src/headerbuttons.c
@@ -213,7 +213,7 @@ char *windowtype_pup(void)
strcat(string, "|User Preferences %x7"); //213
- strcat(string, "|OOPS Schematic %x3"); //232
+ strcat(string, "|Outliner %x3"); //232
strcat(string, "|Buttons Window %x4"); //251
strcat(string, "|%l"); //254
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 70d05c7c3d2..e2f8007ff70 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2042,7 +2042,7 @@ void info_user_themebuts(uiBlock *block, short y1, short y2, short y3)
/* main choices pup */
uiDefButS(block, MENU, B_CHANGE_THEME, "UI and Buttons %x1|%l|3D View %x2|%l|Ipo Curve Editor %x3|Action Editor %x4|"
"NLA Editor %x5|%l|UV/Image Editor %x6|Video Sequence Editor %x7|Audio Timeline %x8|Text Editor %x9|%l|User Preferences %x10|"
- "OOPS Schematic %x11|Buttons Window %x12|%l|File Browser %x13|Image Browser %x14",
+ "Outliner %x11|Buttons Window %x12|%l|File Browser %x13|Image Browser %x14",
255,y2,200,20, &curmain, 0, 0, 0, 0, "Specify theme for...");
if(curmain==1) spacetype= 0;
else if(curmain==2) spacetype= SPACE_VIEW3D;