mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Experiment: edit subject
This commit is contained in:
parent
f426257c6e
commit
472f67c8e6
3 changed files with 12 additions and 1 deletions
6
FAQ.md
6
FAQ.md
|
@ -3984,6 +3984,12 @@ a toolbar to perform operations (align text, insert list, indent text, insert bl
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
*Edit subject (1.2046+)*
|
||||||
|
|
||||||
|
The subject of a received message can be edited, also on the email server, via the horizontal three-dots button just above the message text near the left side of the screen.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
<a name="faq126"></a>
|
<a name="faq126"></a>
|
||||||
**(126) Can message previews be sent to my smartwatch?**
|
**(126) Can message previews be sent to my smartwatch?**
|
||||||
|
|
||||||
|
|
|
@ -6111,6 +6111,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
boolean dark = Helper.isDarkTheme(context);
|
boolean dark = Helper.isDarkTheme(context);
|
||||||
boolean force_light = properties.getValue("force_light", message.id);
|
boolean force_light = properties.getValue("force_light", message.id);
|
||||||
|
|
||||||
|
boolean experiments = prefs.getBoolean("experiments", false);
|
||||||
|
|
||||||
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, ibMore);
|
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, ibMore);
|
||||||
popupMenu.inflate(R.menu.popup_message_more);
|
popupMenu.inflate(R.menu.popup_message_more);
|
||||||
|
|
||||||
|
@ -6138,7 +6140,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
popupMenu.getMenu().findItem(R.id.menu_edit_subject)
|
popupMenu.getMenu().findItem(R.id.menu_edit_subject)
|
||||||
.setEnabled(message.uid != null && !message.folderReadOnly)
|
.setEnabled(message.uid != null && !message.folderReadOnly)
|
||||||
.setVisible(message.accountProtocol == EntityAccount.TYPE_IMAP &&
|
.setVisible(message.accountProtocol == EntityAccount.TYPE_IMAP &&
|
||||||
!BuildConfig.PLAY_STORE_RELEASE);
|
experiments);
|
||||||
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_move_to)
|
popupMenu.getMenu().findItem(R.id.menu_move_to)
|
||||||
.setEnabled(message.uid != null && !message.folderReadOnly)
|
.setEnabled(message.uid != null && !message.folderReadOnly)
|
||||||
|
|
|
@ -2017,6 +2017,9 @@ $NotDisplayed</code></pre>
|
||||||
<p><em>Block toolbar (version 1.1967+)</em></p>
|
<p><em>Block toolbar (version 1.1967+)</em></p>
|
||||||
<p>When enabled in the three-dots overflow menu of the message editor, a toolbar to perform operations (align text, insert list, indent text, insert blockquote) on a block of text (consecutive non-empty lines) will be shown.</p>
|
<p>When enabled in the three-dots overflow menu of the message editor, a toolbar to perform operations (align text, insert list, indent text, insert blockquote) on a block of text (consecutive non-empty lines) will be shown.</p>
|
||||||
<p><br /></p>
|
<p><br /></p>
|
||||||
|
<p><em>Edit subject (1.2046+)</em></p>
|
||||||
|
<p>The subject of a received message can be edited, also on the email server, via the horizontal three-dots button just above the message text near the left side of the screen.</p>
|
||||||
|
<p><br></p>
|
||||||
<p><a name="faq126"></a> <strong>(126) Can message previews be sent to my smartwatch?</strong></p>
|
<p><a name="faq126"></a> <strong>(126) Can message previews be sent to my smartwatch?</strong></p>
|
||||||
<p>🌎 <a href="https://translate.google.com/translate?sl=en&u=https%3A%2F%2Fm66b.github.io%2FFairEmail%2F%23faq126">Google Translate</a></p>
|
<p>🌎 <a href="https://translate.google.com/translate?sl=en&u=https%3A%2F%2Fm66b.github.io%2FFairEmail%2F%23faq126">Google Translate</a></p>
|
||||||
<p>FairEmail fetches a message in two steps:</p>
|
<p>FairEmail fetches a message in two steps:</p>
|
||||||
|
|
Loading…
Reference in a new issue