aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.c
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-10-10 21:46:25 +0800
committerXan Lopez <xan@gnome.org>2010-10-10 21:46:25 +0800
commit2ca51b4db7d1df89873cfd79875e7f69625cf867 (patch)
tree5b34cd5d726838036fbee0f77eef2da1d6b5745a /src/ephy-notebook.c
parent2c7cb83d8ee4f80430d8ab61cb7a97fb014c6a3d (diff)
downloadgsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar.gz
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar.bz2
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar.lz
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar.xz
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.tar.zst
gsoc2013-epiphany-2ca51b4db7d1df89873cfd79875e7f69625cf867.zip
Revert "Port to GtkSpinner"
This reverts commit 98811918bc8c5065eb4b21feb35c9f4def67341f. Accidentally committed.
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r--src/ephy-notebook.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index b9a2e240c..23805d267 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -32,6 +32,7 @@
#include "ephy-embed-utils.h"
#include "ephy-window.h"
#include "ephy-shell.h"
+#include "ephy-spinner.h"
#include "ephy-link.h"
#include "ephy-debug.h"
@@ -514,11 +515,11 @@ sync_load_status (EphyWebView *view, GParamSpec *pspec, GtkWidget *proxy)
{
gtk_widget_hide (icon);
gtk_widget_show (spinner);
- gtk_spinner_start (GTK_SPINNER (spinner));
+ ephy_spinner_start (EPHY_SPINNER (spinner));
}
else
{
- gtk_spinner_stop (GTK_SPINNER (spinner));
+ ephy_spinner_stop (EPHY_SPINNER (spinner));
gtk_widget_hide (spinner);
gtk_widget_show (icon);
}
@@ -597,7 +598,8 @@ build_tab_label (EphyNotebook *nb, EphyEmbed *embed)
gtk_widget_show (hbox);
/* setup load feedback */
- spinner = gtk_spinner_new ();
+ spinner = ephy_spinner_new ();
+ ephy_spinner_set_size (EPHY_SPINNER (spinner), GTK_ICON_SIZE_MENU);
gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0);
/* setup site icon, empty by default */