[Bf-blender-cvs] [6b3c1192e17] master: Fix error in app-template image size check

Campbell Barton noreply at git.blender.org
Tue Jul 16 11:43:08 CEST 2019


Commit: 6b3c1192e1711423bcd509a85b7474c08000c6d9
Author: Campbell Barton
Date:   Tue Jul 16 19:40:23 2019 +1000
Branches: master
https://developer.blender.org/rB6b3c1192e1711423bcd509a85b7474c08000c6d9

Fix error in app-template image size check

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

M	source/blender/windowmanager/intern/wm_operators.c

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

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 29e6c670c00..367a5a81098 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1600,7 +1600,7 @@ static ImBuf *wm_block_splash_image(void)
       BLI_join_dirfile(splash_filepath,
                        sizeof(splash_filepath),
                        template_directory,
-                       (U.pixelsize == 2) ? "splash_2x.png" : "splash.png");
+                       (U.dpi_fac > 1.0) ? "splash_2x.png" : "splash.png");
       ibuf_template = IMB_loadiffname(splash_filepath, IB_rect, NULL);
       if (ibuf_template) {
         const int x_expect = ibuf->x;



More information about the Bf-blender-cvs mailing list