[Bf-blender-cvs] [91d424b] master: Fix tooltip colors not initialized correctly

Julian Eisel noreply at git.blender.org
Thu Jun 4 17:07:20 CEST 2015


Commit: 91d424b82a7655933dbe55f39e6e9cf6aeeaad61
Author: Julian Eisel
Date:   Thu Jun 4 17:04:48 2015 +0200
Branches: master
https://developer.blender.org/rB91d424b82a7655933dbe55f39e6e9cf6aeeaad61

Fix tooltip colors not initialized correctly

Already committed similar fix (rBbeaed66f292dd) but saw it appearing on
other peoples screens a few times since them. Never was able to recreate
though.
This should make sure everything is initialized fine, so if we see it
appearing again, then it's likely because of manual tweaks or the
version saved in the .blend.

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

M	source/blender/editors/interface/interface_widgets.c

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

diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index 8190df6..253f461 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -1767,7 +1767,7 @@ static struct uiWidgetColors wcol_tooltip = {
 	{45, 45, 45, 230},
 	{100, 100, 100, 255},
 
-	{160, 160, 160, 255},
+	{255, 255, 255, 255},
 	{255, 255, 255, 255},
 
 	0,




More information about the Bf-blender-cvs mailing list