diff options
author | trav90 <travawine@protonmail.ch> | 2018-04-11 11:14:15 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-04-11 11:14:15 -0500 |
commit | 78efea17b3644e4a88fee1de441bf5e96437a0c9 (patch) | |
tree | dffb9c1b96afb3b7694926542ffdd4fce13dc80e /widget | |
parent | 5e3ff1d29d623144fff4dac9c7572531db683659 (diff) | |
download | uxp-78efea17b3644e4a88fee1de441bf5e96437a0c9.tar.gz |
[GTK3] Set alpha component appropriately in operator over for -moz-field
Diffstat (limited to 'widget')
-rw-r--r-- | widget/gtk/nsLookAndFeel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widget/gtk/nsLookAndFeel.cpp b/widget/gtk/nsLookAndFeel.cpp index 562eaa97b7..d2b82e4957 100644 --- a/widget/gtk/nsLookAndFeel.cpp +++ b/widget/gtk/nsLookAndFeel.cpp @@ -75,6 +75,7 @@ ApplyColorOver(const GdkRGBA& aSource, GdkRGBA* aDest) { aDest->red = sourceCoef * aSource.red + destCoef * aDest->red; aDest->green = sourceCoef * aSource.green + destCoef * aDest->green; aDest->blue = sourceCoef * aSource.blue + destCoef * aDest->blue; + aDest->alpha = resultAlpha; } } |