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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-08-19 16:35:40 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-08-19 16:35:40 +0400
commitaace6ef551183a3d09635c3103a8e4cba4f9117a (patch)
treeeea82219e48e722e97fb9964f6138f3bac646bfe /source/blender/editors/space_info/space_info.c
parentc3041ae7cda20c78040e7deea17530fe5f41029d (diff)
2.5: Restored statistics in the info header.
Implementation: * NC_SCENE or NC_OBJECT cause scene->stats to be cleared. * NC_INFO is sent to tag info headers for redraw. * In UI scene.statistics() creates scene->stats if it is NULLd, and then returns the string.
Diffstat (limited to 'source/blender/editors/space_info/space_info.c')
-rw-r--r--source/blender/editors/space_info/space_info.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c
index fe5bbf04af1..b6f9cbeabb5 100644
--- a/source/blender/editors/space_info/space_info.c
+++ b/source/blender/editors/space_info/space_info.c
@@ -1,5 +1,5 @@
/**
- * $Id:
+ * $Id$
*
* ***** BEGIN GPL LICENSE BLOCK *****
*
@@ -58,6 +58,7 @@
#include "UI_view2d.h"
#include "ED_markers.h"
+#include "ED_object.h"
#include "info_intern.h" // own include
@@ -166,6 +167,9 @@ static void info_header_listener(ARegion *ar, wmNotifier *wmn)
if(wmn->data==ND_RENDER_RESULT)
ED_region_tag_redraw(ar);
break;
+ case NC_INFO:
+ ED_region_tag_redraw(ar);
+ break;
}
}