mirror of https://github.com/M66B/FairEmail.git
Small behavior fix
This commit is contained in:
parent
7293a49780
commit
60cadffc84
|
@ -158,7 +158,7 @@ public class FragmentOptionsBehavior extends FragmentBase implements SharedPrefe
|
|||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("conversation_actions", checked).apply();
|
||||
swConversationActionsReplies.setEnabled(checked);
|
||||
swConversationActionsReplies.setEnabled(checked && Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue