diff options
author | raveit65 <[email protected]> | 2016-07-03 12:06:36 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-03 13:00:52 +0200 |
commit | 8a9388ebc4deb340a5949cda915d19cf00ddbfc4 (patch) | |
tree | 15ca1bfc1508ad48e81578d00100a08c56354c94 | |
parent | 1a32d3949a77658c048e07842d7a0361d5e0b4a8 (diff) | |
download | atril-8a9388ebc4deb340a5949cda915d19cf00ddbfc4.tar.bz2 atril-8a9388ebc4deb340a5949cda915d19cf00ddbfc4.tar.xz |
GTK+-3.20 ev-view: Update EvView style to use CSS node name
-rw-r--r-- | libview/ev-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c index 4db3f7e1..fe44c85f 100644 --- a/libview/ev-view.c +++ b/libview/ev-view.c @@ -5107,6 +5107,10 @@ ev_view_class_init (EvViewClass *class) object_class->dispose = ev_view_dispose; +#if GTK_CHECK_VERSION(3, 20, 0) + gtk_widget_class_set_css_name (widget_class, "evview"); +#endif + #if GTK_CHECK_VERSION (3, 0, 0) container_class->remove = ev_view_remove; container_class->forall = ev_view_forall; |