From dbded0c3e46fa3126019e14f025cfb4d0d3598ad Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Thu, 1 Jul 2004 10:11:15 +0000 Subject: Do not show the icon for smartbookmarks 2004-07-01 Marco Pesenti Gritti * src/bookmarks/ephy-bookmark-action.c: (ephy_bookmark_action_sync_smart_url): Do not show the icon for smartbookmarks --- ChangeLog | 7 +++++++ src/bookmarks/ephy-bookmark-action.c | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d3b636b7c..4bab1aba3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-07-01 Marco Pesenti Gritti + + * src/bookmarks/ephy-bookmark-action.c: + (ephy_bookmark_action_sync_smart_url): + + Do not show the icon for smartbookmarks + 2004-07-01 Marco Pesenti Gritti * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c index 3921d4fcf..21b094bae 100644 --- a/src/bookmarks/ephy-bookmark-action.c +++ b/src/bookmarks/ephy-bookmark-action.c @@ -157,18 +157,21 @@ ephy_bookmark_action_sync_smart_url (GtkAction *action, GParamSpec *pspec, GtkWi { if (GTK_IS_TOOL_ITEM (proxy)) { - GtkWidget *entry; + GtkWidget *entry, *icon; gboolean smart_url; smart_url = EPHY_BOOKMARK_ACTION (action)->priv->smart_url; entry = GTK_WIDGET (g_object_get_data (G_OBJECT (proxy), "entry")); + icon = GTK_WIDGET (g_object_get_data (G_OBJECT (proxy), "icon")); if (smart_url) { + gtk_widget_hide (icon); gtk_widget_show (entry); } else { + gtk_widget_show (icon); gtk_widget_hide (entry); } } -- cgit v1.2.3