diff options
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 2c5b982f..2d46b95f 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -382,13 +382,13 @@ static const setting filexfer_settings[] = {ST_HEADER, N_("Maximum File Transfer Speeds (bytes per second)"), 0, 0, 0}, {ST_NUMBER, N_("One upload:"), P_OFFINTNL(hex_dcc_max_send_cps), - N_("Maximum speed for one transfer"), 0, 1000000}, + N_("Maximum speed for one transfer"), 0, 10000000}, {ST_NUMBER, N_("One download:"), P_OFFINTNL(hex_dcc_max_get_cps), - N_("Maximum speed for one transfer"), 0, 1000000}, + N_("Maximum speed for one transfer"), 0, 10000000}, {ST_NUMBER, N_("All uploads combined:"), P_OFFINTNL(hex_dcc_global_max_send_cps), - N_("Maximum speed for all files"), 0, 1000000}, + N_("Maximum speed for all files"), 0, 10000000}, {ST_NUMBER, N_("All downloads combined:"), P_OFFINTNL(hex_dcc_global_max_get_cps), - N_("Maximum speed for all files"), 0, 1000000}, + N_("Maximum speed for all files"), 0, 10000000}, {ST_END, 0, 0, 0, 0, 0} }; @@ -542,7 +542,7 @@ static const setting logging_settings[] = {ST_HEADER, N_("Logging"),0,0,0}, {ST_TOGGLE, N_("Display scrollback from previous session"), P_OFFINTNL(hex_text_replay), 0, 0, 0}, {ST_NUMBER, N_("Scrollback lines:"), P_OFFINTNL(hex_text_max_lines),0,0,100000}, - {ST_TOGGLE, N_("Enable logging of conversations to disk"), P_OFFINTNL(hex_irc_logging), 0, 0, 1}, + {ST_TOGGLE, N_("Enable logging of conversations to disk"), P_OFFINTNL(hex_irc_logging), 0, 0, 0}, {ST_ENTRY, N_("Log filename:"), P_OFFSETNL(hex_irc_logmask), 0, 0, sizeof prefs.hex_irc_logmask}, {ST_LABEL, N_("%s=Server %c=Channel %n=Network.")}, |