0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00

Merge pull request #7495 from thunderbird/GH-7493_preview_lines_import

Fix range for `messageListPreviewLines` in `GeneralSettingsDescriptions`
This commit is contained in:
cketti 2024-01-11 14:40:44 +01:00 committed by GitHub
commit 83e1caaf59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,7 +132,7 @@ public class GeneralSettingsDescriptions {
new V(1, new LanguageSetting())
));
s.put("messageListPreviewLines", Settings.versions(
new V(1, new IntegerRangeSetting(1, 100, 2))
new V(1, new IntegerRangeSetting(0, 6, 2))
));
s.put("messageListStars", Settings.versions(
new V(1, new BooleanSetting(true))