Small behavior fix

This commit is contained in:
M66B 2021-03-19 14:25:22 +01:00
parent 7293a49780
commit 60cadffc84
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
});