[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:
parent
7f4f82f1e8
commit
931ddc40dd
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue