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:
parent
8a6f768999
commit
59e8348b15
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue