1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 23:12:55 +00:00

Enabled LanguageTool for Play store (2)

This commit is contained in:
M66B 2022-05-25 09:30:22 +02:00
parent fd3b6c9d1e
commit b09e42956a

View file

@ -1829,14 +1829,13 @@ public class FragmentCompose extends FragmentBase {
for (int i = 0; i < m.size(); i++)
bottom_navigation.findViewById(m.getItem(i).getItemId()).setOnLongClickListener(null);
if (!BuildConfig.PLAY_STORE_RELEASE)
bottom_navigation.findViewById(R.id.action_save).setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View view) {
onLanguageTool();
return true;
}
});
bottom_navigation.findViewById(R.id.action_save).setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View view) {
onLanguageTool();
return true;
}
});
bottom_navigation.findViewById(R.id.action_send).setOnLongClickListener(new View.OnLongClickListener() {
@Override