From 1b27cd70e573118580bc83a5a8ca2bdc31616414 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 4 Feb 2009 17:40:50 +0000 Subject: 2.5 Render back! And not only back, even full threaded now. :) Current state is unfinished, but too much fun to not to commit for review and test! WARNING: because render is in a threaded job, it will use data as can be edited in the UI. That'll crash in many cases of course... the idea is to limit UI usage to viewing stuff, especially for the Image Window to inspect layers or zoom in/out. What works now; - F12 render (no anim) - ESC from render - ESC pushes back temporary Image Window - Render to ImageWindow or full-screen. - Executing composites, and edit composites after render. Note that the UI is 100% responsive in a render, you can switch screens, slide area dividers around, or even load a new file during render. :) It's quite stable even. I'll collect all crash reports especially to get a good picture of where the protection is required at least. Also added: XKey "Delete Objects", to get things crash... unfortunately it didn't for me. --- source/blender/editors/space_file/file_draw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_file') diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index ac05471ff8b..d3f30d47bcf 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -488,10 +488,10 @@ void file_draw_list(const bContext *C, ARegion *ar) if (params->active_file == i) { if (file->flags & ACTIVE) colorid= TH_HILITE; else colorid = TH_BACK; - draw_tile(sx, sy-3, sfile->tile_w, sfile->tile_h, colorid,20); + draw_tile(sx-2, sy-3, sfile->tile_w+2, sfile->tile_h, colorid,20); } else if (file->flags & ACTIVE) { colorid = TH_HILITE; - draw_tile(sx, sy-3, sfile->tile_w, sfile->tile_h, colorid,0); + draw_tile(sx-2, sy-3, sfile->tile_w+2, sfile->tile_h, colorid,0); } else { /* colorid = TH_PANEL; -- cgit v1.2.3