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>2006-12-26 14:26:10 +0300
committerTon Roosendaal <ton@blender.org>2006-12-26 14:26:10 +0300
commit87286dad823d1d1b3538428ee600484f215576f8 (patch)
treef2b1278c03b8ad3cfa4141c521c9e68fa9a6c6e9 /source/blender/src/space.c
parentd1091296636726149309d59a5d29e24cfd343631 (diff)
Bugfixes #5314 and #5424
- removed the "\" from pulldown menu, and replaced with readable "or" (makes it for translation systems easier to parse) - the theme menu, area type chooseer menu, "Timeline" didnt draw in the button due to bad pupmenu_col() code with using 'seperators'. Fixed it by just adding another separator for now. Both fixes reviewed and provided by Juho. Thanks!
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 850a3288f43..29e29a3d7e5 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2746,9 +2746,9 @@ static void info_user_themebuts(uiBlock *block, short y1, short y2, short y3)
/* name */
uiDefBut(block, TEX, B_NAME_THEME, "", 255,y3,200,20, btheme->name, 1.0, 30.0, 0, 0, "Rename theme");
- /* main choices pup */
+ /* main choices pup: note, it uses collums, and the seperators (%l) then have to fill both halves equally for the menu to work */
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|Node Editor %x16|Timeline %x15|Audio Window %x8|Text Editor %x9|%l|User Preferences %x10|"
+ "NLA Editor %x5|%l|UV/Image Editor %x6|Video Sequence Editor %x7|Node Editor %x16|Timeline %x15|%l|Audio Window %x8|Text Editor %x9|%l|User Preferences %x10|"
"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;