From e12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Apr 2019 06:17:24 +0200 Subject: ClangFormat: apply to source, most of intern Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat --- source/blender/editors/space_file/file_utils.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'source/blender/editors/space_file/file_utils.c') diff --git a/source/blender/editors/space_file/file_utils.c b/source/blender/editors/space_file/file_utils.c index 0294b635910..a432afc4d99 100644 --- a/source/blender/editors/space_file/file_utils.c +++ b/source/blender/editors/space_file/file_utils.c @@ -32,13 +32,15 @@ #include "file_intern.h" - void file_tile_boundbox(const ARegion *ar, FileLayout *layout, const int file, rcti *r_bounds) { - int xmin, ymax; - - ED_fileselect_layout_tilepos(layout, file, &xmin, &ymax); - ymax = (int)ar->v2d.tot.ymax - ymax; /* real, view space ymax */ - BLI_rcti_init(r_bounds, xmin, xmin + layout->tile_w + layout->tile_border_x, - ymax - layout->tile_h - layout->tile_border_y, ymax); + int xmin, ymax; + + ED_fileselect_layout_tilepos(layout, file, &xmin, &ymax); + ymax = (int)ar->v2d.tot.ymax - ymax; /* real, view space ymax */ + BLI_rcti_init(r_bounds, + xmin, + xmin + layout->tile_w + layout->tile_border_x, + ymax - layout->tile_h - layout->tile_border_y, + ymax); } -- cgit v1.2.3