summaryrefslogtreecommitdiff
path: root/src/nautilus-window-toolbars.c
diff options
context:
space:
mode:
authorAndy Hertzfeld <andy@src.gnome.org>2000-09-25 02:12:39 +0000
committerAndy Hertzfeld <andy@src.gnome.org>2000-09-25 02:12:39 +0000
commit14e9e038ec7f0816973b79b1445df81303b952a4 (patch)
treeac6ccd797c2ff16e99c1531792fa182d6d0f2125 /src/nautilus-window-toolbars.c
parentdf05c57c685ec3ef56dca92e8c7cc0ddc4ae485a (diff)
downloadnautilus-14e9e038ec7f0816973b79b1445df81303b952a4.tar.gz
implemented a small mode for the throbber to fix bug 3188. Also, cleaned
implemented a small mode for the throbber to fix bug 3188. Also, cleaned up some other throbber problems. added a "nautilus_copy_uri_simple" cover to gnome_vfs_xfer_uri to make it easy to replace 'cp' system calls. changed the way colors are presented by the property browser to use names instead of color values and to be more consistent with backgrounds. Also, cleaned up the error handling and replaced 'system' calls that had quoting problems with vfs calls, fixing bugs 1249 and 2539
Diffstat (limited to 'src/nautilus-window-toolbars.c')
-rw-r--r--src/nautilus-window-toolbars.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nautilus-window-toolbars.c b/src/nautilus-window-toolbars.c
index 82282c258..1054f639a 100644
--- a/src/nautilus-window-toolbars.c
+++ b/src/nautilus-window-toolbars.c
@@ -339,11 +339,16 @@ static GtkWidget*
allocate_throbber (GtkWidget *toolbar)
{
GtkWidget *throbber;
+ gboolean small_mode;
throbber = nautilus_throbber_new ();
gtk_widget_show (throbber);
gtk_toolbar_append_widget (GTK_TOOLBAR (toolbar), throbber, NULL, NULL);
nautilus_toolbar_set_throbber (NAUTILUS_TOOLBAR (toolbar), throbber);
+
+ small_mode = GTK_TOOLBAR (toolbar)->style != GTK_TOOLBAR_BOTH;
+ nautilus_throbber_set_small_mode (NAUTILUS_THROBBER (throbber), small_mode);
+
return throbber;
}