summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-06-28 15:23:29 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-06-28 15:23:29 -0400
commit3c400823167799b167b621549e776688c8624953 (patch)
tree9e2a4ed9fb17ffe65dd159785381540e1d4a4e2b
parentf0478c3dfdb14c7ad474ed1d2ac989f8e4ecf3c8 (diff)
downloadgtk+-3c400823167799b167b621549e776688c8624953.tar.gz
widget-factory: Make the entry progress variable too
Make the scale that currently controls the speed of the progressbar control the progress speed in the entry as well.
-rw-r--r--demos/widget-factory/widget-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/widget-factory/widget-factory.c b/demos/widget-factory/widget-factory.c
index 09b3a09373..ff0c3dc42b 100644
--- a/demos/widget-factory/widget-factory.c
+++ b/demos/widget-factory/widget-factory.c
@@ -182,7 +182,7 @@ pulse_entry (GtkEntry *entry)
{
gtk_entry_progress_pulse (entry);
- pulse_entry_id = g_timeout_add (100, (GSourceFunc)pulse_entry, entry);
+ pulse_entry_id = g_timeout_add (pulse_time, (GSourceFunc)pulse_entry, entry);
return G_SOURCE_REMOVE;
}