From: Jordan Lee Date: Sat, 12 Feb 2011 23:54:33 +0000 (+0000) Subject: (trunk gtk) #4012 "Cannot set individual seeding time in GTK+ client" -- fixed. X-Git-Tag: 2.30b1~371 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59e8348b15912b3c159063cf28c23c6d2ff294b0;p=transmission (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. --- diff --git a/gtk/details.c b/gtk/details.c index af96dad46..b0dd78710 100644 --- a/gtk/details.c +++ b/gtk/details.c @@ -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