GNOME Bugzilla – Bug 653162
Warning on fullscreening
Last modified: 2011-06-24 12:59:12 UTC
Launch eog, press "F5" for fullscreen. (eog:9994): GLib-GObject-WARNING **: gsignal.c:2209: signal `size_request' is invalid for instance `0x1da1dc0' And indeed: $ grep -r \"size_request\" . ./src/eog-window.c: g_signal_connect_object (popup, "size_request", I don't know what effect this not working would have.
A leftover from the GTK+-3 porting. Solved it the simple way. commit 1cc2606adac0d8a2b7428dbc17088b23810ca599 Author: Felix Riemann <> Date: Fri Jun 24 14:54:12 2011 +0200 Drop size-request signal callback for fullscreen toolbar Didn't work with GTK-3 and caused critical warnings when entering fullscreen mode. Just removing the callback seems to be sufficient as the toolbar's size request is set when entering fullscreen mode anyway. https://bugzilla.gnome.org/show_bug.cgi?id=653162 This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.