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.
This commit is contained in:
Matthias Clasen 2014-06-28 15:23:29 -04:00
parent f0478c3dfd
commit 3c40082316

View File

@ -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;
}