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/header_info.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/header_info.c')
-rw-r--r--source/blender/src/header_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/header_info.c b/source/blender/src/header_info.c
index 03eed300520..2e16ae2833c 100644
--- a/source/blender/src/header_info.c
+++ b/source/blender/src/header_info.c
@@ -1000,7 +1000,7 @@ static uiBlock *info_filemenu(void *arg_unused)
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Append\\Link|Shift F1", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 3, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Append or Link|Shift F1", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 3, "");
uiDefIconTextBlockBut(block, info_file_importmenu, NULL, ICON_RIGHTARROW_THIN, "Import", 0, yco-=20, menuwidth, 19, "");
uiDefIconTextBlockBut(block, info_file_exportmenu, NULL, ICON_RIGHTARROW_THIN, "Export", 0, yco-=20, menuwidth, 19, "");