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>2005-10-17 23:03:16 +0400
committerTon Roosendaal <ton@blender.org>2005-10-17 23:03:16 +0400
commit4d2c0d3ef16f1ffb0d401b121ceb215a9215e1a2 (patch)
treeaa79af0c33dc371b4ec2c153462cb233a6057b10 /source/blender/src/filesel.c
parent5991b078c92739c7b44b7101e0af03803df481b7 (diff)
Three fixes in 1 commit; (reports 3183 3201 3203)
- added redraw of Oops/Outliner on selecting in Databrowse - Ipo Record in ipo window had copy paste error, causing in potential mem errors - Ipo Record now creates a new Ipo again
Diffstat (limited to 'source/blender/src/filesel.c')
-rw-r--r--source/blender/src/filesel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/filesel.c b/source/blender/src/filesel.c
index 0a761728fa2..35bede646cf 100644
--- a/source/blender/src/filesel.c
+++ b/source/blender/src/filesel.c
@@ -2385,6 +2385,7 @@ static void filesel_select_objects(SpaceFile *sfile)
}
countall();
allqueue(REDRAWVIEW3D, 0);
+ allqueue(REDRAWOOPS, 0);
}
else if( strcmp(sfile->dir, "Scene/")==0 ) {
@@ -2419,6 +2420,7 @@ static void active_file_object(SpaceFile *sfile)
BASACT->flag |= SELECT;
sfile->filelist[sfile->act].flags |= ACTIVE;
allqueue(REDRAWVIEW3D, 0);
+ allqueue(REDRAWOOPS, 0);
scrarea_queue_winredraw(curarea);
}
}