From: Peter Stuifzand Date: 2005-01-14T22:23:38+09:00 Subject: Re: ruby-gnome2 : problem with signal "insert-text" On Fri, 14 Jan 2005 07:01:14 +0900, oxman wrote: > Hello, > > i have a problem with the signal "insert-text", the signal was > call before the text is insert, so i can't color it, how i can > have a signal just after the text have been insert ? > > thanks > oxman. > > Hello oxman, You should use: widget.signal_connect_after("nsert-text") do # code .... end -- Peter