Your message dated Wed, 05 May 2010 07:25:47 +0800
with message-id <[email protected]>
and subject line Bug#577273: fixed in vte 1:0.24.1-1
has caused the Debian Bug report #577273,
regarding Reversed and one error saturation level in 0.24.0
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
577273: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577273
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libvte9
Version: 1:0.24.0-2
Tags: patch
This is upstream bug #615417. [1]
In vte 0.24.0:
1. when saturation is 1, the background image is original image (very
light).
2. when saturation is less 1 but near 1, the image is black (dark).
3. the saturation level is reversed compared with vte <= 0.23.5
In vte 0.23.5 and before:
1. when saturation is near 1, the background image is light.
2. when saturation is near 0, the background image is dark.
The attached patch will fix the problem.
Kind regards
Wen-Yen Chuang (caleb)
[1] https://bugzilla.gnome.org/show_bug.cgi?id=615417
--- vte-0.24.0.orig/src/vtebg.c
+++ vte-0.24.0/src/vtebg.c
@@ -500,7 +500,7 @@
tint->red / 65535.,
tint->green / 65535.,
tint->blue / 65535.,
- saturation);
+ 1 - saturation);
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
cairo_paint (cr);
}
--- End Message ---
--- Begin Message ---
Source: vte
Source-Version: 1:0.24.1-1
Fixed upstream.
--- End Message ---