Commit: fcc54d06ce575278e1018313351f4b2cb4f2a50e Author: Julian Eisel Date: Sun Aug 18 20:43:34 2019 +0200 Branches: filebrowser_redesign https://developer.blender.org/rBfcc54d06ce575278e1018313351f4b2cb4f2a50e
Don't limit with of execute region by tool properties region =================================================================== M source/blender/editors/space_file/space_file.c =================================================================== diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c index f5c381716f9..29d8cf9af69 100644 --- a/source/blender/editors/space_file/space_file.c +++ b/source/blender/editors/space_file/space_file.c @@ -85,12 +85,6 @@ static SpaceLink *file_new(const ScrArea *UNUSED(area), const Scene *UNUSED(scen ar->regiontype = RGN_TYPE_TOOLS; ar->alignment = RGN_ALIGN_LEFT; - /* Tool props (aka operator) region */ - ar = MEM_callocN(sizeof(ARegion), "tool props region for file"); - BLI_addtail(&sfile->regionbase, ar); - ar->regiontype = RGN_TYPE_TOOL_PROPS; - ar->alignment = RGN_ALIGN_RIGHT; - /* Execute region */ ar = MEM_callocN(sizeof(ARegion), "execute region for file"); BLI_addtail(&sfile->regionbase, ar); @@ -98,6 +92,12 @@ static SpaceLink *file_new(const ScrArea *UNUSED(area), const Scene *UNUSED(scen ar->alignment = RGN_ALIGN_BOTTOM; ar->flag |= RGN_FLAG_DYNAMIC_SIZE; + /* Tool props (aka operator) region */ + ar = MEM_callocN(sizeof(ARegion), "tool props region for file"); + BLI_addtail(&sfile->regionbase, ar); + ar->regiontype = RGN_TYPE_TOOL_PROPS; + ar->alignment = RGN_ALIGN_RIGHT; + /* main region */ ar = MEM_callocN(sizeof(ARegion), "main region for file"); BLI_addtail(&sfile->regionbase, ar); _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
