GNOME Bugzilla – Bug 636301
Port testgradient example to GTK3
Last modified: 2010-12-02 23:19:13 UTC
Ports the testgradient example to GTK3. It'll probably not do anything but throw warnings to stderr currently. I only noticed this example because it fails to compile with GTK3 rendering-cleanup. I could also just delete it?
Created attachment 175711 [details] [review] ui: Port testgradient example to GTK3
Review of attachment 175711 [details] [review]: Looks good. ::: src/ui/testgradient.c @@ +237,1 @@ + return FALSE; Why do you need to propagate the signal?
I suppose I just did that out of habit. It's generally a bad idea to return TRUE because you don't get dnd highlights and disallow connect_after() signals. So I fix it everywhere to not let get people get in the habit of doing the wrong thing. In this particular case, it doesn't matter of course.