1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 21:26:53 +00:00

(trunk gtk) #4012 "Cannot set individual seeding time in GTK+ client" -- fixed.

The code in gtk/details.c was still using the pre-release RPC key "seedInactiveLimit" when it should have been using "seedIdleLimit" instead.
This commit is contained in:
Jordan Lee 2011-02-12 23:54:33 +00:00
parent 8a6f768999
commit 59e8348b15

View file

@ -406,7 +406,7 @@ down_speed_spun_cb( GtkSpinButton * s, struct DetailsImpl * di )
static void
idle_spun_cb( GtkSpinButton * s, struct DetailsImpl * di )
{
torrent_set_int( di, "seedInactiveLimit", gtk_spin_button_get_value_as_int( s ) );
torrent_set_int( di, "seedIdleLimit", gtk_spin_button_get_value_as_int( s ) );
}
static void