diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-07-07 00:02:48 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-07-07 00:02:48 +0800 |
commit | ddfb904e0080cc647c2d3513164a04f95d15aa28 (patch) | |
tree | 88907bfce3c8815708c1f1537c91232f752b1327 /lib | |
parent | 15d82ddc241b097f9af25682542489ee7937b231 (diff) | |
download | gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar.gz gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar.bz2 gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar.lz gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar.xz gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.tar.zst gsoc2013-epiphany-ddfb904e0080cc647c2d3513164a04f95d15aa28.zip |
ephy-location-entry: use new channel-{secure,insecure} symbolic icons
Bug #650789
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index e67b3e904..e67f20944 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1586,9 +1586,9 @@ ephy_location_entry_set_lock_stock (EphyLocationEntry *entry, * everything else, nothing is shown. */ if (!stock_id || g_str_equal (stock_id, STOCK_LOCK_BROKEN)) - priv->lock_gicon = g_themed_icon_new_with_default_fallbacks ("changes-allow-symbolic"); + priv->lock_gicon = g_themed_icon_new_with_default_fallbacks ("channel-insecure-symbolic"); else - priv->lock_gicon = g_themed_icon_new_with_default_fallbacks ("changes-prevent-symbolic"); + priv->lock_gicon = g_themed_icon_new_with_default_fallbacks ("channel-secure-symbolic"); if (priv->show_lock) gtk_entry_set_icon_from_gicon (GTK_ENTRY (priv->entry), |