summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-06-12 23:03:06 +0200
committerraveit65 <[email protected]>2015-06-12 23:03:06 +0200
commit945913214e0ae6b460581ba665dd62f80603750b (patch)
tree83d1bda664eefc40495e63b47a21bddab3c4dfc3 /src
parentff30825a03c3efa32dfac81f58b2cb37a8d68697 (diff)
downloadeom-945913214e0ae6b460581ba665dd62f80603750b.tar.bz2
eom-945913214e0ae6b460581ba665dd62f80603750b.tar.xz
EomThumbView: Don't set deprecated follow-state property
Since gtk+-3.16 the property is ignored. Silences the deprecation warning. taken from: https://git.gnome.org/browse/eog/commit/?id=40a9883
Diffstat (limited to 'src')
-rw-r--r--src/eom-thumb-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eom-thumb-view.c b/src/eom-thumb-view.c
index 8394633..e52886c 100644
--- a/src/eom-thumb-view.c
+++ b/src/eom-thumb-view.c
@@ -102,7 +102,9 @@ eom_thumb_view_constructed (GObject *object)
FALSE);
g_object_set (thumbview->priv->pixbuf_cell,
+#if !GTK_CHECK_VERSION (3, 16, 0)
"follow-state", FALSE,
+#endif
"height", 100,
"width", 115,
"yalign", 0.5,