[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27588] trunk/blender/source/blender/ windowmanager/intern/wm_operators.c: Removed the 'recover temp' option from the splash screen - the way the temp saving currently

Matt Ebb matt at mke3.net
Thu Mar 18 08:05:20 CET 2010


Revision: 27588
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27588
Author:   broken
Date:     2010-03-18 08:05:20 +0100 (Thu, 18 Mar 2010)

Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/source/blender/windowmanager/intern/wm_operators.c

Modified: trunk/blender/source/blender/windowmanager/intern/wm_operators.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2010-03-18 06:03:41 UTC (rev 27587)
+++ trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2010-03-18 07:05:20 UTC (rev 27588)
@@ -1110,10 +1110,8 @@
 		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);





More information about the Bf-blender-cvs mailing list