From 8a27016f8a87a13b22cda3f405d28684917dc3f3 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sun, 24 Sep 2006 11:23:56 +0200 Subject: [PATCH] Reworked how the alpha value of the MailboxIcon is set. --- bin/embrace | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/embrace b/bin/embrace index 6433d04..eae0994 100755 --- a/bin/embrace +++ b/bin/embrace @@ -121,6 +121,7 @@ module Embrace @objects = [@img, @label] @objects.each { |o| add_member(o) } + set_color(255, 255, 255, 0) @img.set_color(255, 255, 255, 0) @label.set_color(255, 0, 0, 0) @@ -137,7 +138,7 @@ module Embrace def smart_show @objects.each { |o| o.show } - @alpha_anim ||= AlphaAnimator.new(2, @img, @label) + @alpha_anim ||= AlphaAnimator.new(2, self) @alpha_anim.on_finished { @alpha_anim = nil } end @@ -166,6 +167,10 @@ module Embrace def smart_resize(w, h) @img.resize(w, h) end + + def smart_color_set(r, g, b, a) + @objects.each { |o| o.alpha = a } + end end class Container < Evas::Smart -- 2.30.2