diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-04-25 19:18:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-04-25 19:18:22 +0800 |
commit | 128299b23fd69395667fe0ef0545493a64e13b44 (patch) | |
tree | bf0bc7afb709af88f179ca9c05ed741c547bb08a | |
parent | 13f18f36f100cb883d3d42016da8b0a5a2ace9bc (diff) | |
download | gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar.gz gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar.bz2 gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar.lz gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar.xz gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.tar.zst gsoc2013-epiphany-128299b23fd69395667fe0ef0545493a64e13b44.zip |
Set the close button as data on the tab label.
2004-04-25 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (build_tab_label):
Set the close button as data on the tab label.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-04-25 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-notebook.c: (build_tab_label): + + Set the close button as data on the tab label. + 2004-04-22 Christian Persch <chpe@cvs.gnome.org> * HACKING: diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 3e8689100..42b850e58 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -965,6 +965,7 @@ build_tab_label (EphyNotebook *nb, EphyTab *tab) g_object_set_data (G_OBJECT (hbox), "label-ebox", label_ebox); g_object_set_data (G_OBJECT (hbox), "loading-image", loading_image); g_object_set_data (G_OBJECT (hbox), "icon", icon); + g_object_set_data (G_OBJECT (hbox), "close-button", close_button); g_object_set_data (G_OBJECT (hbox), "tooltips", nb->priv->title_tips); return hbox; |