diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org> + * src/ephy-tab.c: (ephy_tab_location_cb): + + Reset link message when changing page. + +2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org> + * TODO: * embed/ephy-history.c: (ephy_history_init): * embed/mozilla/FilePicker.cpp: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 2c50af794..170ae3846 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -443,6 +443,7 @@ ephy_tab_location_cb (EphyEmbed *embed, EphyTab *tab) if (tab->priv->location) g_free (tab->priv->location); ephy_embed_get_location (embed, TRUE, &tab->priv->location); + tab->priv->link_message[0] = '\0'; if (tab->priv->is_active) { |