GNOME Bugzilla – Bug 347600
unable to reset transparency color back to black
Last modified: 2006-07-23 23:03:19 UTC
When I use another color as transparency color (for example #EAEAEA) and then try to switch back to black it doesn't work. The color is unchanged. This happens in gnome-2-14, HEAD and eog-ng.
Created attachment 68964 [details] [review] correct printf syntax This patch corrects the printf-syntax generating the color string. The problem was that the printf used the normal syntax for the width-token which pads the resulting string with spaces. A black color string (#00000) became # 0 0 0. The patch changes the printf-string that it uses the 0number syntax for the width-token. Another possible fix would have been to replace the width with the precision (.2).
Commited to eog-ng, eog-2-14 and HEAD branchs. Thanks.