Merge pull request #7495 from thunderbird/GH-7493_preview_lines_import
Fix range for `messageListPreviewLines` in `GeneralSettingsDescriptions`
This commit is contained in:
commit
83e1caaf59
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue