GNOME Bugzilla – Bug 623802
camerabin: Bin based viewfinder sink support is broken
Last modified: 2010-07-08 02:33:23 UTC
camerabin_setup_view_elements contains for (child = children; child != NULL; child = g_list_next (children)) { should be for (child = children; child != NULL; child = g_list_next (child)) {
Thianks for reporting it. It is now fixed. commit 44e3d29ec409498fbea1c37a3d53394325b32b60 Author: Thiago Santos <thiago.sousa.santos@collabora.co.uk> Date: Wed Jul 7 23:06:43 2010 -0300 camerabin: Fix viewfiner-sink property for bins Correctly iterate viewfinder-sink children when it is a bin. Fixes #623802