Default disable quote limiting

pull/188/head
M66B 4 years ago
parent 4685999bc5
commit e376c33261

@ -3838,7 +3838,7 @@ public class FragmentCompose extends FragmentBase {
Element e = d.body();
// Limit number of nested block quotes
boolean quote_limit = prefs.getBoolean("quote_limit", true);
boolean quote_limit = prefs.getBoolean("quote_limit", false);
if (quote_limit &&
("reply".equals(action) || "reply_all".equals(action)))
for (Element bq : e.select("blockquote")) {

@ -411,7 +411,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
swSeparateReply.setChecked(prefs.getBoolean("separate_reply", false));
swExtendedReply.setChecked(prefs.getBoolean("extended_reply", false));
swQuoteReply.setChecked(prefs.getBoolean("quote_reply", true));
swQuoteLimit.setChecked(prefs.getBoolean("quote_limit", true));
swQuoteLimit.setChecked(prefs.getBoolean("quote_limit", false));
swQuoteLimit.setEnabled(swQuoteReply.isChecked());
swResizeReply.setChecked(prefs.getBoolean("resize_reply", true));

Loading…
Cancel
Save