[Bf-blender-cvs] [6d6c75e1a0f] temp-lanpr-staging: Fix T68678: Invisible fullscreen button

Campbell Barton noreply at git.blender.org
Fri Aug 16 03:04:45 CEST 2019


Commit: 6d6c75e1a0f377161b8b5b6eba7b9fdfd57c2c6c
Author: Campbell Barton
Date:   Thu Aug 15 18:17:33 2019 +1000
Branches: temp-lanpr-staging
https://developer.blender.org/rB6d6c75e1a0f377161b8b5b6eba7b9fdfd57c2c6c

Fix T68678: Invisible fullscreen button

Regression from 6148ed8cf9ca

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

M	source/blender/editors/screen/area.c

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

diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 5099c370a85..6f776d3115a 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -203,7 +203,7 @@ static void area_draw_azone_fullscreen(short x1, short y1, short x2, short y2, f
 
   alpha = min_ff(alpha, 0.75f);
 
-  UI_icon_draw_ex(x, y, ICON_FULLSCREEN_EXIT, 0.7f * U.inv_dpi_fac, 0.0f, alpha, NULL, false);
+  UI_icon_draw_ex(x, y, ICON_FULLSCREEN_EXIT, 0.7f * U.inv_dpi_fac, alpha, 0.0f, NULL, false);
 
   /* debug drawing :
    * The click_rect is the same as defined in fullscreen_click_rcti_init



More information about the Bf-blender-cvs mailing list