summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntónio Fernandes <antoniof@gnome.org>2021-12-23 16:00:27 +0000
committerAntónio Fernandes <antoniof@gnome.org>2022-01-05 12:56:32 +0000
commit5b499a8c84978f5fc4384a565427d14a08e51beb (patch)
tree6da3ec1e7f4aa9bafba54e78411b3d761028284a
parent5492baa5517d864a00a55767ca913bc90dc4a65c (diff)
downloadnautilus-5b499a8c84978f5fc4384a565427d14a08e51beb.tar.gz
general: GtkSpinner:active -> GtkSpinner:spinning
-rw-r--r--src/nautilus-floating-bar.c2
-rw-r--r--src/nautilus-notebook.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-floating-bar.c b/src/nautilus-floating-bar.c
index 3caa37fc8..295ef7ad2 100644
--- a/src/nautilus-floating-bar.c
+++ b/src/nautilus-floating-bar.c
@@ -358,7 +358,7 @@ nautilus_floating_bar_constructed (GObject *obj)
* ensure the spinner animates if and only if it's visible, to reduce CPU
* usage. */
g_object_bind_property (obj, "show-spinner",
- w, "active",
+ w, "spinning",
G_BINDING_SYNC_CREATE);
self->spinner = w;
diff --git a/src/nautilus-notebook.c b/src/nautilus-notebook.c
index 494ef8ed1..9579f5f98 100644
--- a/src/nautilus-notebook.c
+++ b/src/nautilus-notebook.c
@@ -168,7 +168,7 @@ nautilus_notebook_sync_loading (GtkNotebook *notebook,
g_return_if_fail (spinner != NULL && icon != NULL);
active = FALSE;
- g_object_get (spinner, "active", &active, NULL);
+ g_object_get (spinner, "spinning", &active, NULL);
allow_stop = nautilus_window_slot_get_allow_stop (slot);
if (active == allow_stop)