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:
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/screen/area.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 9a116bf95c0..2cdb75e28e3 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -1034,7 +1034,12 @@ void ED_area_prevspace(bContext *C)
}
#endif
- ED_area_newspace(C, sa, sl->next->spacetype);
+ /* workaround for case of double prevspace, render window
+ with a file browser on top of it */
+ if(sl->next->spacetype == SPACE_FILE && sl->next->next)
+ ED_area_newspace(C, sa, sl->next->next->spacetype);
+ else
+ ED_area_newspace(C, sa, sl->next->spacetype);
}
else {
ED_area_newspace(C, sa, SPACE_INFO);