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
path: root/source
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-03-18 10:05:20 +0300
committerMatt Ebb <matt@mke3.net>2010-03-18 10:05:20 +0300
commit3566400dc53bcb2d07b760775d607330e3ea5d54 (patch)
tree59ee0a24767825067b14fbe6baaefd2098760916 /source
parentd96bf316ac7a1b86ee347551b05da7488e7ac65e (diff)
Removed the 'recover temp' option from the splash screen - the way the temp saving currently
works, it's mostly non-functional there (i.e. when you've just started the application). It would be nice if blender could name the temp files in a special way so that it could actually search through the temp folder and find the most recently saved temp file, but for now, I'll just remove the option.
Diffstat (limited to 'source')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 7d16fba404c..3a251ecd491 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1110,10 +1110,8 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *arg_unuse
else display_name= recent->filename;
uiItemStringO(col, display_name, ICON_FILE_BLEND, "WM_OT_open_mainfile", "path", recent->filename);
}
- uiItemL(col, "Recovery", 0);
- uiItemO(col, NULL, ICON_FILE_BLEND, "WM_OT_recover_last_session");
- uiItemO(col, NULL, ICON_FILE_BLEND, "WM_OT_recover_auto_save");
-
+ uiItemS(col);
+ uiItemO(col, NULL, ICON_HELP, "WM_OT_recover_last_session");
uiItemL(col, "", 0);
uiCenteredBoundsBlock(block, 0.0f);