diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/widgets/ephy-icon-entry.c | 6 |
2 files changed, 7 insertions, 6 deletions
@@ -1,5 +1,12 @@ 2005-08-03 Christian Persch <chpe@cvs.gnome.org> + * lib/widgets/ephy-icon-entry.c: (ephy_icon_entry_get_borders): + + No need to add focus_width to borders anymore. Now we get the + same height as a normal entry. + +2005-08-03 Christian Persch <chpe@cvs.gnome.org> + * lib/widgets/ephy-icon-entry.c: (ephy_icon_entry_get_borders), (ephy_icon_entry_size_allocate): diff --git a/lib/widgets/ephy-icon-entry.c b/lib/widgets/ephy-icon-entry.c index 898b8cadb..1ab2dc0b6 100644 --- a/lib/widgets/ephy-icon-entry.c +++ b/lib/widgets/ephy-icon-entry.c @@ -75,12 +75,6 @@ ephy_icon_entry_get_borders (GtkWidget *widget, *xborder = entry->style->xthickness; *yborder = entry->style->ythickness; - /* While GtkEntry does this only when !interior-focus, we need this even - * with interior-focus, since otherwise we end up being too small. - */ - *xborder += focus_width; - *yborder += focus_width; - if (!interior_focus) { *xborder += focus_width; |