~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to gtk/tr_prefs.c

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2007-10-29 19:53:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071029195302-gyy129sjmci7ezel
Tags: 0.91.dfsg-1
* New upstream release (Closes: #448516).
* Using manpages from source package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * This exemption does not extend to derived works not owned by
8
8
 * the Transmission project.
9
9
 * 
10
 
 * $Id: tr_prefs.c 3449 2007-10-17 18:31:12Z charles $
 
10
 * $Id: tr_prefs.c 3548 2007-10-24 22:59:48Z charles $
11
11
 */
12
12
 
13
13
#include <glib/gi18n.h>
216
216
        w = new_check_button( s, PREF_KEY_UL_LIMIT_ENABLED, core );
217
217
        hig_workarea_add_wide_control( t, &row, w );
218
218
 
219
 
        w = new_spin_button( PREF_KEY_UL_LIMIT, core, 20, INT_MAX );
 
219
        w = new_spin_button( PREF_KEY_UL_LIMIT, core, 0, INT_MAX );
220
220
        s = _("Maximum _Upload Speed (KiB/s)");
221
221
        l = hig_workarea_add_row( t, &row, s, w, NULL );
222
222
        
224
224
        w = new_check_button( s, PREF_KEY_DL_LIMIT_ENABLED, core );
225
225
        hig_workarea_add_wide_control( t, &row, w );
226
226
 
227
 
        w = new_spin_button( PREF_KEY_DL_LIMIT, core, 1, INT_MAX );
 
227
        w = new_spin_button( PREF_KEY_DL_LIMIT, core, 0, INT_MAX );
228
228
        s = _("Maximum _Download Speed (KiB/s)");
229
229
        l = hig_workarea_add_row( t, &row, s, w, NULL );
230
230