A conversation can't be trimmed to 0.

pull/1/head
Moxie Marlinspike 12 years ago
parent fe43ef65ab
commit 232e7bba2d

@ -383,6 +383,10 @@ public class ApplicationPreferencesActivity extends SherlockPreferenceActivity {
return false;
}
if (Integer.parseInt((String)newValue) < 1) {
return false;
}
preference.setSummary((String)newValue + " " +
getString(R.string.ApplicationPreferencesActivity_messages_per_conversation));
return true;

Loading…
Cancel
Save