aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/widgets/ephy-spinner.c8
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e54d3b1d0..d9635b261 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-11-17 Benjamin Berg <benjamin@sipsolutions.net>
+
+ * lib/widgets/ephy-spinner.c: (ephy_spinner_start):
+ Lower the priority of the spinner animation so that the animation
+ does not stop page loading. Fixes bug #374623.
+
2006-11-13 Wouter Bolsterlee <wbolster@cvs.gnome.org>
* data/epiphany-fonts.schemas:
diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c
index a1d0f209e..dcb0e0ab6 100644
--- a/lib/widgets/ephy-spinner.c
+++ b/lib/widgets/ephy-spinner.c
@@ -756,9 +756,11 @@ ephy_spinner_start (EphySpinner *spinner)
details->current_image = 0;
details->timer_task =
- g_timeout_add (details->timeout,
- (GSourceFunc) bump_spinner_frame_cb,
- spinner);
+ g_timeout_add_full (G_PRIORITY_LOW,
+ details->timeout,
+ (GSourceFunc) bump_spinner_frame_cb,
+ spinner,
+ NULL);
}
}