mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Small fix
This commit is contained in:
parent
3b54867ad8
commit
d939941864
1 changed files with 2 additions and 2 deletions
|
@ -1328,14 +1328,14 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|||
}
|
||||
|
||||
String sender_ellipsize = prefs.getString("sender_ellipsize", "end");
|
||||
for (int pos = 0; pos < startupValues.length; pos++)
|
||||
for (int pos = 0; pos < ellipsizeValues.length; pos++)
|
||||
if (ellipsizeValues[pos].equals(sender_ellipsize)) {
|
||||
spSenderEllipsize.setSelection(pos);
|
||||
break;
|
||||
}
|
||||
|
||||
String subject_ellipsize = prefs.getString("subject_ellipsize", "full");
|
||||
for (int pos = 0; pos < startupValues.length; pos++)
|
||||
for (int pos = 0; pos < ellipsizeValues.length; pos++)
|
||||
if (ellipsizeValues[pos].equals(subject_ellipsize)) {
|
||||
spSubjectEllipsize.setSelection(pos);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue