summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-07-07 15:15:50 -0400
committerTingPing <tngpng@gmail.com>2013-07-07 15:15:50 -0400
commit7f50ee6fd296ae10ea37d7baf080e774d230eca5 (patch)
tree4c0a0f108ee146fc3f554ec3a7e44637a7998bae /src/fe-gtk
parent1544a5d6cb4e44af23c0c2354d0fc6cb1b404460 (diff)
Increase upper limit for max DCC speed in preferences
For #672
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/setup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c
index 2c5b982f..9bcd9828 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}
 };