diff options
author | Xan Lopez <xan@igalia.com> | 2012-10-03 18:06:38 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-10-03 18:06:38 +0800 |
commit | edaf2784e030d48c77a336575ce97de67af58121 (patch) | |
tree | b2920a6bd1311054d9ee974b53531c683e219cf0 /embed/ephy-embed.c | |
parent | c188d4754da2764f9c98a0c5508fd801e263712b (diff) | |
download | gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar.gz gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar.bz2 gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar.lz gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar.xz gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.tar.zst gsoc2013-epiphany-edaf2784e030d48c77a336575ce97de67af58121.zip |
ephy-embed: set shadow type IN for scrolled window
As requested by the GNOME designers.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 957e760fd..52a218087 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -1057,6 +1057,8 @@ ephy_embed_init (EphyEmbed *embed) #ifndef HAVE_WEBKIT2 gtk_scrolled_window_set_policy (priv->scrolled_window, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_shadow_type (priv->scrolled_window, + GTK_SHADOW_IN); #endif } |