mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
Added incoming rate limit preference.
This commit is contained in:
parent
2363d92f22
commit
875b6b8c8d
2 changed files with 8 additions and 1 deletions
|
@ -163,7 +163,9 @@ public class SettingsFragment extends PreferenceFragment
|
|||
|
||||
// Set the preference value as summary.
|
||||
if (preference instanceof EditTextPreference) {
|
||||
String value = (String) o;
|
||||
String value = (o instanceof String)
|
||||
? (String) o
|
||||
: Integer.toString((Integer) o);
|
||||
preference.setSummary(value);
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,11 @@
|
|||
android:title="Sync Protocol Listen Addresses"
|
||||
android:defaultValue="0.0.0.0:22000" />
|
||||
|
||||
<EditTextPreference
|
||||
android:key="MaxRecvKbps"
|
||||
android:title="Incoming Rate Limit (KiB/s)"
|
||||
android:numeric="integer" />
|
||||
|
||||
<EditTextPreference
|
||||
android:key="MaxSendKbps"
|
||||
android:title="Outgoing Rate Limit (KiB/s)"
|
||||
|
|
Loading…
Reference in a new issue