aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-tab.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index edbcb4db6..877ef8567 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-07-07 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/ephy-tab.c: (build_progress_from_requests):
+
+ Fix progress update logic.
+
2003-07-07 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/ephy-types.h:
diff --git a/src/ephy-tab.c b/src/ephy-tab.c
index 85f4bceb9..df8a6f9c7 100644
--- a/src/ephy-tab.c
+++ b/src/ephy-tab.c
@@ -700,7 +700,7 @@ build_progress_from_requests (EphyTab *tab, EmbedState state)
load_percent = build_load_percent (tab->priv->cur_requests,
tab->priv->total_requests);
- if (load_percent > tab->priv->load_percent)
+ if (load_percent > tab->priv->load_percent || load_percent == -1)
{
ephy_tab_set_load_percent (tab, load_percent);
}