[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29381] trunk/blender/source/blender/ windowmanager/intern/wm_jobs.c: revert accidental changes in last commit

Campbell Barton ideasman42 at gmail.com
Thu Jun 10 09:58:29 CEST 2010


Revision: 29381
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29381
Author:   campbellbarton
Date:     2010-06-10 09:58:29 +0200 (Thu, 10 Jun 2010)

Log Message:
-----------
revert accidental changes in last commit

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

Modified: trunk/blender/source/blender/windowmanager/intern/wm_jobs.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_jobs.c	2010-06-10 07:57:25 UTC (rev 29380)
+++ trunk/blender/source/blender/windowmanager/intern/wm_jobs.c	2010-06-10 07:58:29 UTC (rev 29381)
@@ -450,7 +450,7 @@
 	}
 	
 	/* on file load 'winactive' can be NULL, possibly it should not happen but for now do a NULL check - campbell */
-//	if(wm->winactive) {
+	if(wm->winactive) {
 		/* if there are running jobs, set the global progress indicator */
 		if (jobs_progress > 0) {
 			float progress = total_progress / (float)jobs_progress;
@@ -458,6 +458,6 @@
 		} else {
 			WM_progress_clear(wm->winactive);
 		}
-//	}
+	}
 }
 





More information about the Bf-blender-cvs mailing list