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>2009-02-07 13:00:46 +0300
committerTon Roosendaal <ton@blender.org>2009-02-07 13:00:46 +0300
commit19896992ffdfc86e82104511fc254af7c7067a71 (patch)
tree0bf6974bc18c6240550668a8e59ad6c40532dba0 /source/blender/editors/screen/area.c
parent86f200a510a199cd028ea4dc55071cff6e087788 (diff)
2.5
- Added back CTRL+X "reload start-up file". (Original name 'erase all' is a bit misleading, but we can go over all naming conventions later :) - Added memfree for triple buffer data.
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 95fd8bfa102..347de2e8b6b 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -109,6 +109,10 @@ void ED_region_do_listen(ARegion *ar, wmNotifier *note)
{
/* generic notes first */
switch(note->category) {
+ case NC_WM:
+ if(note->data==ND_FILEREAD)
+ ED_region_tag_redraw(ar);
+ break;
case NC_WINDOW:
ED_region_tag_redraw(ar);
break;