mirror of
https://github.com/transmission/transmission
synced 2025-02-12 17:34:40 +00:00
Fix use of new Glib API which fails on older Glib build machines
This commit is contained in:
parent
0b7fd36077
commit
e525c17dc5
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ appsetup( TrWindow * wind, GSList * torrentFiles,
|
|||
|
||||
/* start scheduled rate timer */
|
||||
updateScheduledLimits (tr_core_handle( cbdata->core ));
|
||||
g_timeout_add_seconds( 60, updateScheduledLimits, tr_core_handle( cbdata->core ) );
|
||||
g_timeout_add( 60 * 1000, updateScheduledLimits, tr_core_handle( cbdata->core ) );
|
||||
|
||||
/* either show the window or iconify it */
|
||||
if( !minimized )
|
||||
|
|
Loading…
Reference in a new issue