[Bf-blender-cvs] [1b5acbb329c] master: Correct splash size check

Campbell Barton noreply at git.blender.org
Tue Mar 28 08:06:34 CEST 2017


Commit: 1b5acbb329c530c0ce169cea534ac424682d750e
Author: Campbell Barton
Date:   Tue Mar 28 17:07:11 2017 +1100
Branches: master
https://developer.blender.org/rB1b5acbb329c530c0ce169cea534ac424682d750e

Correct splash 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 39e06ccc3c8..7743d4865df 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1778,7 +1778,7 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *UNUSED(ar
 			        (U.pixelsize == 2) ? "splash_2x.png" : "splash.png");
 			ibuf_template = IMB_loadiffname(splash_filepath, IB_rect, NULL);
 			if (ibuf_template) {
-				const int x_expect = ibuf_template->x;
+				const int x_expect = ibuf->x;
 				const int y_expect = 230 * (int)U.pixelsize;
 				/* don't cover the header text */
 				if (ibuf_template->x == x_expect && ibuf_template->y == y_expect) {




More information about the Bf-blender-cvs mailing list