[font-viewer] interrupt thumbnailing at 30 secs instead of 30 msecs

Timeout value was supposed to be 30 seconds; 30 milliseconds is a bit
too short to get any amount of thumbnailing done (bug #584107)
This commit is contained in:
Jens Granseuer 2009-05-28 21:00:05 +02:00
parent 7f4f82f1e8
commit 931ddc40dd
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2009-05-28 Jens Granseuer <jensgr@gmx.net>
* font-viewer/font-thumbnailer.c (main): Timeout value was supposed
to be 30 seconds; 30 milliseconds is a bit too short to get any
amount of thumbnailing done (bug #584107)
2009-05-07 Christian Persch <chpe@gnome.org>
* font-viewer/ftstream-vfs.c: (vfs_stream_open): Safely printf

View file

@ -297,7 +297,7 @@ main(int argc, char **argv)
goto out;
}
totem_resources_monitor_start (arguments[0], 30);
totem_resources_monitor_start (arguments[0], 30 * G_USEC_PER_SEC);
file = g_file_new_for_commandline_arg (arguments[0]);
uri = g_file_get_uri (file);