diff options
author | Xan Lopez <xan@gnome.org> | 2009-11-02 18:10:40 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-10-24 18:21:25 +0800 |
commit | c255df464cf44e9687f80c5845e5f31a500f7084 (patch) | |
tree | b2c5c6cb9d2ada8250894df681962961599e9a62 /src/ephy-notebook.c | |
parent | 90f545eba59c0ecf1ea6924d909630e9a9b564c6 (diff) | |
download | gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar.gz gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar.bz2 gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar.lz gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar.xz gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.tar.zst gsoc2013-epiphany-c255df464cf44e9687f80c5845e5f31a500f7084.zip |
Spinner changes
We get rid of the spinner in the toolbar, since load information is
already given by the floating status indicator inside the WebView.
The only remaining spinner is the one in the tabs, which has been
ported to use GtkSpinner.
Get rid of EphySpinner.
Fixes:
https://bugzilla.gnome.org/show_bug.cgi?id=524809 (again)
https://bugzilla.gnome.org/show_bug.cgi?id=598442
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 23805d267..b9a2e240c 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -32,7 +32,6 @@ #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" @@ -515,11 +514,11 @@ sync_load_status (EphyWebView *view, GParamSpec *pspec, GtkWidget *proxy) { gtk_widget_hide (icon); gtk_widget_show (spinner); - ephy_spinner_start (EPHY_SPINNER (spinner)); + gtk_spinner_start (GTK_SPINNER (spinner)); } else { - ephy_spinner_stop (EPHY_SPINNER (spinner)); + gtk_spinner_stop (GTK_SPINNER (spinner)); gtk_widget_hide (spinner); gtk_widget_show (icon); } @@ -598,8 +597,7 @@ build_tab_label (EphyNotebook *nb, EphyEmbed *embed) gtk_widget_show (hbox); /* setup load feedback */ - spinner = ephy_spinner_new (); - ephy_spinner_set_size (EPHY_SPINNER (spinner), GTK_ICON_SIZE_MENU); + spinner = gtk_spinner_new (); gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0); /* setup site icon, empty by default */ |