diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-10-25 David Bordoley <bordoley@msu.edu> + + * src/ephy-tab.c: (build_net_state_message): + + don't pollute the statusbar with a "Done." message. + 2003-10-24 Christian Persch <chpe@cvs.gnome.org> * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_response_cb), diff --git a/src/ephy-tab.c b/src/ephy-tab.c index e0455a194..4db7b43c1 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -681,7 +681,7 @@ build_net_state_message (const char *uri, EmbedState flags) } else if (flags & EMBED_STATE_STOP) { - msg = _("Done."); + msg = (""); } } |