[Bf-blender-cvs] [a2a9c958455] master: Fix T68678: Invisible fullscreen button

Campbell Barton noreply at git.blender.org
Thu Aug 15 11:53:36 CEST 2019


Commit: a2a9c95845559b0bfffaf4b6b5e32e31ed3da7a1
Author: Campbell Barton
Date:   Thu Aug 15 18:17:33 2019 +1000
Branches: master
https://developer.blender.org/rBa2a9c95845559b0bfffaf4b6b5e32e31ed3da7a1

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