diff options
author | David Bordoley <bordoley@msu.edu> | 2003-10-25 18:16:03 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-10-25 18:16:03 +0800 |
commit | 48ae0d12793616ce1376527cefa0eb97f69d8e19 (patch) | |
tree | 3942e3df42566c1baf28931d9c28da7d3698d452 /src | |
parent | 0408961cb808d25737540c65ce3503e12d1d2205 (diff) | |
download | gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar.gz gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar.bz2 gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar.lz gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar.xz gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.tar.zst gsoc2013-epiphany-48ae0d12793616ce1376527cefa0eb97f69d8e19.zip |
don't pollute the statusbar with a "Done." message.
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-tab.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = (""); } } |