diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-06-26 22:31:07 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-26 22:31:07 +0800 |
commit | 5c4078df2c17f93ca5e2ec679f65bac7c9102e6f (patch) | |
tree | 67a08721aa7444f2f1fbc20c43cd9a84ade5bfa7 | |
parent | e7f718df228b8aa3461480cb743609878995d2bc (diff) | |
download | gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar.gz gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar.bz2 gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar.lz gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar.xz gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.tar.zst gsoc2013-epiphany-5c4078df2c17f93ca5e2ec679f65bac7c9102e6f.zip |
Do not sync tab visibility on tab creation, it's state is undefined at
2003-06-26 Marco Pesenti Gritti <marco@it.gnome.org>
* src/ephy-window.c: (tab_added_cb):
Do not sync tab visibility on tab creation, it's state
is undefined at that point
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-window.c | 1 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2003-06-26 Marco Pesenti Gritti <marco@it.gnome.org> + + * src/ephy-window.c: (tab_added_cb): + + Do not sync tab visibility on tab creation, it's state + is undefined at that point + 2003-06-25 Marco Pesenti Gritti <marco@it.gnome.org> * lib/egg/egg-editable-toolbar.c: (set_item_drag_source), diff --git a/src/ephy-window.c b/src/ephy-window.c index c263b6e5a..d39f70023 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1304,7 +1304,6 @@ tab_added_cb (EphyNotebook *notebook, GtkWidget *child, EphyWindow *window) sync_tab_load_status (tab, NULL, window); g_signal_connect_object (G_OBJECT (tab), "notify::load-status", G_CALLBACK (sync_tab_load_status), window, 0); - sync_tab_visibility (tab, NULL, window); g_signal_connect_object (G_OBJECT (tab), "notify::visible", G_CALLBACK (sync_tab_visibility), window, 0); } |