Quote limit is independent

This commit is contained in:
M66B 2020-11-19 10:57:15 +01:00
parent 3ccf210e62
commit 06738e7592
1 changed files with 0 additions and 2 deletions

View File

@ -232,7 +232,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
prefs.edit().putBoolean("quote_reply", checked).apply();
swQuoteLimit.setEnabled(checked);
}
});
@ -412,7 +411,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
swExtendedReply.setChecked(prefs.getBoolean("extended_reply", false));
swQuoteReply.setChecked(prefs.getBoolean("quote_reply", true));
swQuoteLimit.setChecked(prefs.getBoolean("quote_limit", true));
swQuoteLimit.setEnabled(swQuoteReply.isChecked());
swResizeReply.setChecked(prefs.getBoolean("resize_reply", true));
int signature_location = prefs.getInt("signature_location", 1);