diff options
author | Benjamin Berg <benjamin@sipsolutions.net> | 2006-11-18 02:01:31 +0800 |
---|---|---|
committer | Benjamin Berg <bberg@src.gnome.org> | 2006-11-18 02:01:31 +0800 |
commit | 1c3ef5b77f178fb640b8721a264efdbed82883dd (patch) | |
tree | 0a20cb29e8bd7a2ec5b0ec09fede3cad59186bb6 | |
parent | 2d5f4ed9f47616e86ae00c8a99da26a2b8589177 (diff) | |
download | gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar.gz gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar.bz2 gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar.lz gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar.xz gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.tar.zst gsoc2013-epiphany-1c3ef5b77f178fb640b8721a264efdbed82883dd.zip |
Lower the priority of the spinner animation so that the animation does not
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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-spinner.c | 8 |
2 files changed, 11 insertions, 3 deletions
@@ -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); } } |