mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Add to calendar is a pro feature
This commit is contained in:
parent
0a24bf0c17
commit
95a969154c
4 changed files with 7 additions and 1 deletions
|
@ -72,6 +72,7 @@ All pro features are convenience or advanced features.
|
|||
* Synchronization scheduling
|
||||
* Reply templates
|
||||
* Accept/decline calendar invitations
|
||||
* Add message to calendar
|
||||
* Filter rules
|
||||
* Search indexing, search on server
|
||||
* Keyword management
|
||||
|
|
|
@ -91,6 +91,7 @@ All pro features are convenience or advanced features.
|
|||
* Synchronization scheduling ([instructions](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq78))
|
||||
* Reply templates
|
||||
* Accept/decline calendar invitations
|
||||
* Add message to calendar
|
||||
* Filter rules ([instructions](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq71))
|
||||
* Search indexing, search on server ([instructions](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq13))
|
||||
* Keyword management
|
||||
|
|
|
@ -3709,7 +3709,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
onMenuShare(message, false);
|
||||
return true;
|
||||
case R.id.menu_event:
|
||||
if (ActivityBilling.isPro(context))
|
||||
onMenuShare(message, true);
|
||||
else
|
||||
context.startActivity(new Intent(context, ActivityBilling.class));
|
||||
return true;
|
||||
case R.id.menu_print:
|
||||
onMenuPrint(message);
|
||||
|
|
|
@ -72,6 +72,7 @@ All pro features are convenience or advanced features.
|
|||
* Synchronization scheduling
|
||||
* Reply templates
|
||||
* Accept/decline calendar invitations
|
||||
* Add message to calendar
|
||||
* Filter rules
|
||||
* Search indexing, search on server
|
||||
* Keyword management
|
||||
|
|
Loading…
Reference in a new issue