GNOME Bugzilla – Bug 676036
Bookmarks gone after update to 3.4.2 (due to #675393)
Last modified: 2012-05-14 18:12:33 UTC
After updating gnome-panel to 3.4.2 my bookmarks which used to be displayed in the Places menu are gone. This is due to the fact that (gtk_check_version (3, 5, 1)) appears to return a non-falsy value on my gtk 3.4.3 installation, and thus the first branch is taken...but that's only meant for gtk 3.5.1. For now I've made it a compile time check, but that doesn't feel right given the commit message. Any idea what's going on with gtk_check_version() here?
Doh, it's my fault -- I was assuming gtk_check_version() return a boolean, but it returns a string describing the mismatch... So the check is reversed.
Fixed in git, will release 3.4.2.1. Sorry for the mess :-)
Thanks for the quick fix! :)