diff options
author | raveit65 <[email protected]> | 2015-06-12 23:03:06 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-06-12 23:03:06 +0200 |
commit | 945913214e0ae6b460581ba665dd62f80603750b (patch) | |
tree | 83d1bda664eefc40495e63b47a21bddab3c4dfc3 | |
parent | ff30825a03c3efa32dfac81f58b2cb37a8d68697 (diff) | |
download | eom-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
-rw-r--r-- | src/eom-thumb-view.c | 2 |
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, |