[Bf-blender-cvs] [87de71a8aaa] master: Fix: File browser icons intersecting in thumbnail view

William Reynish noreply at git.blender.org
Sun Jun 16 00:35:24 CEST 2019


Commit: 87de71a8aaa0fa6a4609ad05db35b9056f3e34a6
Author: William Reynish
Date:   Sun Jun 16 00:35:22 2019 +0200
Branches: master
https://developer.blender.org/rB87de71a8aaa0fa6a4609ad05db35b9056f3e34a6

Fix: File browser icons intersecting in thumbnail view

The new icons were colliding in the corners. This moves the ID type icon inside the file box to avoid this clash.

===================================================================

M	source/blender/editors/space_file/file_draw.c

===================================================================

diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index 6b3baa1e766..9bdea13276b 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -478,7 +478,14 @@ static void file_draw_preview(uiBlock *block,
       GPU_SRC_ALPHA, GPU_ONE_MINUS_SRC_ALPHA, GPU_ONE, GPU_ONE_MINUS_SRC_ALPHA);
 
   if (icon) {
-    UI_icon_draw_ex((float)xco, (float)yco, icon, icon_aspect, 1.0f, 0.0f, NULL, false);
+    UI_icon_draw_ex((float)xco + (7 * UI_DPI_FAC),
+                    (float)yco + (7 * UI_DPI_FAC),
+                    icon,
+                    icon_aspect,
+                    1.0f,
+                    0.0f,
+                    NULL,
+                    false);
   }
 
   /* border */



More information about the Bf-blender-cvs mailing list